blob: 5a126818936f0c0e3f8809c876d8d29d92717aaf [file] [log] [blame]
// Copyright 2020 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 footer
import (
"testing"
"go.chromium.org/luci/common/data/strpair"
. "github.com/smartystreets/goconvey/convey"
)
func TestParseLegacyMetadata(t *testing.T) {
t.Parallel()
Convey("ParseLegacyMetadata", t, func() {
Convey("Complete", func() {
actual := ParseLegacyMetadata(`message
commit details...
MD_ONE=1111
more details...
MD-HYPHEN=invalid
MD_lowercase=invalid
Footer: Cool
MD_TWO=2222
Footer: Awesome
`)
So(actual, ShouldResemble, strpair.ParseMap([]string{
"MD_ONE:1111",
"MD_TWO:2222",
}))
})
Convey("Honor metadata order", func() {
actual := ParseLegacyMetadata(`MD_FOO=foo
MD_FOO=bar
MD_FOO=baz
`)
So(actual["MD_FOO"], ShouldResemble, []string{
"baz",
"bar",
"foo",
})
})
})
}