drone-yaml/yaml/converter/legacy/match_test.go

38 lines
736 B
Go
Raw Normal View History

2019-02-10 20:00:16 +01:00
// Copyright 2019 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by the Drone Non-Commercial License
// that can be found in the LICENSE file.
2019-02-10 20:00:16 +01:00
2019-01-23 00:44:17 +01:00
package legacy
import "testing"
func TestMatch(t *testing.T) {
tests := []struct {
config string
result bool
}{
{
config: "pipeline:\n build:\n image: golang:1.11",
result: true,
},
{
config: "\n\npipeline:\n",
result: true,
},
{
config: "\n\npipeline: \n",
result: true,
},
{
config: "---\nkind: pipeline\n",
result: false,
},
}
for i, test := range tests {
b := []byte(test.config)
if got, want := Match(b), test.result; got != want {
t.Errorf("Want IsLegacyBytes %v at index %d,", want, i)
}
}
}