1// Copyright 2019 Istio Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7//     http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15package collection_test
16
17import (
18	"testing"
19
20	. "github.com/onsi/gomega"
21
22	"istio.io/istio/galley/pkg/config/testing/basicmeta"
23	"istio.io/istio/galley/pkg/config/testing/data"
24	"istio.io/istio/pkg/config/schema/collection"
25)
26
27func TestNames_Clone(t *testing.T) {
28	g := NewGomegaWithT(t)
29
30	n := collection.Names{basicmeta.K8SCollection1.Name(), basicmeta.Collection2.Name()}
31
32	n2 := n.Clone()
33	g.Expect(n2).To(Equal(n))
34}
35
36func TestNames_Sort(t *testing.T) {
37	g := NewGomegaWithT(t)
38
39	n := collection.Names{data.Foo.Name(), data.Baz.Name(), data.Bar.Name()}
40	expected := collection.Names{data.Bar.Name(), data.Baz.Name(), data.Foo.Name()}
41
42	n.Sort()
43	g.Expect(n).To(Equal(expected))
44}
45