blob: 0a9764232a1eaba56e5b8bae6140872b4c950221 [file] [log] [blame]
// Copyright 2016 The LUCI Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package lucictx
import (
"context"
"encoding/json"
"testing"
. "github.com/smartystreets/goconvey/convey"
. "go.chromium.org/luci/common/testing/assertions"
)
func TestPredefinedTypes(t *testing.T) {
t.Parallel()
Convey("Test predefined types", t, func() {
c := context.Background()
Convey("local_auth", func() {
So(GetLocalAuth(c), ShouldBeNil)
localAuth := &LocalAuth{
RpcPort: 100,
Secret: []byte("foo"),
Accounts: []*LocalAuthAccount{
{Id: "test", Email: "some@example.com"},
},
DefaultAccountId: "test",
}
c = SetLocalAuth(c, localAuth)
data := getCurrent(c).sections["local_auth"]
var v interface{}
So(json.Unmarshal(*data, &v), ShouldBeNil)
So(v, ShouldResemble, map[string]interface{}{
"accounts": []interface{}{map[string]interface{}{
"email": "some@example.com",
"id": "test",
}},
"default_account_id": "test",
"secret": "Zm9v",
"rpc_port": 100.0,
})
So(GetLocalAuth(c), ShouldResembleProto, localAuth)
})
Convey("swarming", func() {
So(GetSwarming(c), ShouldBeNil)
s := &Swarming{
SecretBytes: []byte("foo"),
Task: &Task{
Server: "https://backend.appspot.com",
TaskId: "task_id",
BotDimensions: []string{
"k1:v1",
},
},
}
c = SetSwarming(c, s)
data := getCurrent(c).sections["swarming"]
var v interface{}
So(json.Unmarshal(*data, &v), ShouldBeNil)
So(v, ShouldResemble, map[string]interface{}{
"secret_bytes": "Zm9v",
"task": map[string]interface{}{
"server": "https://backend.appspot.com",
"task_id": "task_id",
"bot_dimensions": []interface{}{"k1:v1"},
},
})
So(GetSwarming(c), ShouldResembleProto, s)
})
Convey("resultdb", func() {
So(GetResultDB(c), ShouldBeNil)
resultdb := &ResultDB{
Hostname: "test.results.cr.dev",
CurrentInvocation: &ResultDBInvocation{
Name: "invocations/build:1",
UpdateToken: "foobarbazsecretoken",
}}
c = SetResultDB(c, resultdb)
data := getCurrent(c).sections["resultdb"]
var v interface{}
So(json.Unmarshal(*data, &v), ShouldBeNil)
So(v, ShouldResemble, map[string]interface{}{
"current_invocation": map[string]interface{}{
"name": "invocations/build:1",
"update_token": "foobarbazsecretoken",
},
"hostname": "test.results.cr.dev",
})
So(GetResultDB(c), ShouldResembleProto, resultdb)
})
Convey("realm", func() {
So(GetRealm(c), ShouldBeNil)
r := &Realm{
Name: "test:realm",
}
c = SetRealm(c, r)
data := getCurrent(c).sections["realm"]
So(string(*data), ShouldEqual, `{"name":"test:realm"}`)
So(GetRealm(c), ShouldResembleProto, r)
proj, realm := CurrentRealm(c)
So(proj, ShouldEqual, "test")
So(realm, ShouldEqual, "realm")
})
Convey("buildbucket", func() {
So(GetBuildbucket(c), ShouldBeNil)
b := &Buildbucket{
Hostname: "hostname",
ScheduleBuildToken: "a token",
}
c = SetBuildbucket(c, b)
data := getCurrent(c).sections["buildbucket"]
var v interface{}
So(json.Unmarshal(*data, &v), ShouldBeNil)
So(v, ShouldResemble, map[string]interface{}{
"hostname": "hostname",
"schedule_build_token": "a token",
})
So(GetBuildbucket(c), ShouldResembleProto, b)
})
})
}