blob: a48e7e0e318534979a52894ccb4b091cad8e1b96 [file] [log] [blame]
// Copyright 2017 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 rpc
import (
"context"
"fmt"
"testing"
"github.com/DATA-DOG/go-sqlmock"
"go.chromium.org/luci/common/data/stringset"
"go.chromium.org/luci/machine-db/api/crimson/v1"
"go.chromium.org/luci/machine-db/appengine/database"
. "github.com/smartystreets/goconvey/convey"
. "go.chromium.org/luci/common/testing/assertions"
)
func TestListOSes(t *testing.T) {
Convey("listOSes", t, func() {
db, m, _ := sqlmock.New()
defer db.Close()
c := database.With(context.Background(), db)
selectStmt := `
^SELECT name, description
FROM oses$
`
columns := []string{"os.name", "os.description"}
rows := sqlmock.NewRows(columns)
Convey("query failed", func() {
names := stringset.NewFromSlice("os")
m.ExpectQuery(selectStmt).WillReturnError(fmt.Errorf("error"))
oses, err := listOSes(c, names)
So(err, ShouldErrLike, "failed to fetch operating systems")
So(oses, ShouldBeEmpty)
So(m.ExpectationsWereMet(), ShouldBeNil)
})
Convey("empty", func() {
names := stringset.NewFromSlice("os")
m.ExpectQuery(selectStmt).WillReturnRows(rows)
oses, err := listOSes(c, names)
So(err, ShouldBeNil)
So(oses, ShouldBeEmpty)
So(m.ExpectationsWereMet(), ShouldBeNil)
})
Convey("no matches", func() {
names := stringset.NewFromSlice("os")
rows.AddRow("os 1", "description 1")
rows.AddRow("os 2", "description 2")
m.ExpectQuery(selectStmt).WillReturnRows(rows)
oses, err := listOSes(c, names)
So(err, ShouldBeNil)
So(oses, ShouldBeEmpty)
So(m.ExpectationsWereMet(), ShouldBeNil)
})
Convey("matches", func() {
names := stringset.NewFromSlice("os 2", "os 3")
rows.AddRow("os 1", "description 1")
rows.AddRow("os 2", "description 2")
rows.AddRow("os 3", "description 3")
m.ExpectQuery(selectStmt).WillReturnRows(rows)
oses, err := listOSes(c, names)
So(err, ShouldBeNil)
So(oses, ShouldResemble, []*crimson.OS{
{
Name: "os 2",
Description: "description 2",
},
{
Name: "os 3",
Description: "description 3",
},
})
So(m.ExpectationsWereMet(), ShouldBeNil)
})
Convey("ok", func() {
names := stringset.New(0)
rows.AddRow("os 1", "description 1")
rows.AddRow("os 2", "description 2")
m.ExpectQuery(selectStmt).WillReturnRows(rows)
oses, err := listOSes(c, names)
So(err, ShouldBeNil)
So(oses, ShouldResemble, []*crimson.OS{
{
Name: "os 1",
Description: "description 1",
},
{
Name: "os 2",
Description: "description 2",
},
})
So(m.ExpectationsWereMet(), ShouldBeNil)
})
})
}