blob: 195d404037fd01c141f50e0310b99148595e8d2b [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package syncbase_test
import (
"testing"
"v.io/syncbase/v23/syncbase"
tu "v.io/syncbase/v23/syncbase/testutil"
_ "v.io/x/ref/profiles"
)
////////////////////////////////////////
// Test cases
// TODO(sadovsky): Finish writing tests.
func TestNameAndKey(t *testing.T) {
a := syncbase.NewService("s").App("a")
if a.Name() != "a" {
t.Errorf("Wrong name: %s", a.Name())
}
}
// Tests that Service.{Set,Get}Permissions work as expected.
func TestServicePerms(t *testing.T) {
ctx, sName, cleanup := tu.SetupOrDie(nil)
defer cleanup()
tu.TestPerms(t, ctx, syncbase.NewService(sName))
}
// Tests that App.Create works as expected.
func TestAppCreate(t *testing.T) {
ctx, sName, cleanup := tu.SetupOrDie(nil)
defer cleanup()
tu.TestCreate(t, ctx, syncbase.NewService(sName))
}
// Tests that App.Delete works as expected.
func TestAppDelete(t *testing.T) {
ctx, sName, cleanup := tu.SetupOrDie(nil)
defer cleanup()
tu.TestDelete(t, ctx, syncbase.NewService(sName))
}
// Tests that App.{Set,Get}Permissions work as expected.
func TestAppPerms(t *testing.T) {
ctx, sName, cleanup := tu.SetupOrDie(nil)
defer cleanup()
a := syncbase.NewService(sName).App("a")
if err := a.Create(ctx, nil); err != nil {
t.Fatalf("a.Create() failed: %s", err)
}
tu.TestPerms(t, ctx, a)
}