2017-10-24 20:13:31 +02:00
|
|
|
// Copyright 2017 Google Inc. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 android
|
|
|
|
|
|
|
|
import (
|
2019-02-16 08:03:34 +01:00
|
|
|
"fmt"
|
2017-10-24 20:13:31 +02:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var firstUniqueStringsTestCases = []struct {
|
|
|
|
in []string
|
|
|
|
out []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
in: []string{"a"},
|
|
|
|
out: []string{"a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "a"},
|
|
|
|
out: []string{"a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b", "a"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"b", "a", "a"},
|
|
|
|
out: []string{"b", "a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b", "a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"liblog", "libdl", "libc++", "libdl", "libc", "libm"},
|
|
|
|
out: []string{"liblog", "libdl", "libc++", "libc", "libm"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFirstUniqueStrings(t *testing.T) {
|
|
|
|
for _, testCase := range firstUniqueStringsTestCases {
|
|
|
|
out := FirstUniqueStrings(testCase.in)
|
|
|
|
if !reflect.DeepEqual(out, testCase.out) {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" input: %#v", testCase.in)
|
|
|
|
t.Errorf(" expected: %#v", testCase.out)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var lastUniqueStringsTestCases = []struct {
|
|
|
|
in []string
|
|
|
|
out []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
in: []string{"a"},
|
|
|
|
out: []string{"a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "a"},
|
|
|
|
out: []string{"a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b", "a"},
|
|
|
|
out: []string{"b", "a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"b", "a", "a"},
|
|
|
|
out: []string{"b", "a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"a", "b", "a", "b"},
|
|
|
|
out: []string{"a", "b"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
in: []string{"liblog", "libdl", "libc++", "libdl", "libc", "libm"},
|
|
|
|
out: []string{"liblog", "libc++", "libdl", "libc", "libm"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLastUniqueStrings(t *testing.T) {
|
|
|
|
for _, testCase := range lastUniqueStringsTestCases {
|
|
|
|
out := LastUniqueStrings(testCase.in)
|
|
|
|
if !reflect.DeepEqual(out, testCase.out) {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" input: %#v", testCase.in)
|
|
|
|
t.Errorf(" expected: %#v", testCase.out)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-08 11:14:19 +01:00
|
|
|
|
|
|
|
func TestJoinWithPrefix(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
name string
|
|
|
|
input []string
|
|
|
|
expected string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "zero_inputs",
|
|
|
|
input: []string{},
|
|
|
|
expected: "",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "one_input",
|
|
|
|
input: []string{"a"},
|
|
|
|
expected: "prefix:a",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "two_inputs",
|
|
|
|
input: []string{"a", "b"},
|
|
|
|
expected: "prefix:a prefix:b",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
prefix := "prefix:"
|
|
|
|
|
|
|
|
for _, testCase := range testcases {
|
|
|
|
t.Run(testCase.name, func(t *testing.T) {
|
|
|
|
out := JoinWithPrefix(testCase.input, prefix)
|
|
|
|
if out != testCase.expected {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" input: %#v", testCase.input)
|
|
|
|
t.Errorf(" prefix: %#v", prefix)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expected)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestIndexList(t *testing.T) {
|
|
|
|
input := []string{"a", "b", "c"}
|
|
|
|
|
|
|
|
testcases := []struct {
|
|
|
|
key string
|
|
|
|
expected int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
key: "a",
|
|
|
|
expected: 0,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "b",
|
|
|
|
expected: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "c",
|
|
|
|
expected: 2,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "X",
|
|
|
|
expected: -1,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testcases {
|
|
|
|
t.Run(testCase.key, func(t *testing.T) {
|
|
|
|
out := IndexList(testCase.key, input)
|
|
|
|
if out != testCase.expected {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" key: %#v", testCase.key)
|
|
|
|
t.Errorf(" input: %#v", input)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expected)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestInList(t *testing.T) {
|
|
|
|
input := []string{"a"}
|
|
|
|
|
|
|
|
testcases := []struct {
|
|
|
|
key string
|
|
|
|
expected bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
key: "a",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "X",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testcases {
|
|
|
|
t.Run(testCase.key, func(t *testing.T) {
|
|
|
|
out := InList(testCase.key, input)
|
|
|
|
if out != testCase.expected {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" key: %#v", testCase.key)
|
|
|
|
t.Errorf(" input: %#v", input)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expected)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestPrefixInList(t *testing.T) {
|
|
|
|
prefixes := []string{"a", "b"}
|
|
|
|
|
|
|
|
testcases := []struct {
|
|
|
|
str string
|
|
|
|
expected bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
str: "a-example",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
str: "b-example",
|
|
|
|
expected: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
str: "X-example",
|
|
|
|
expected: false,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testcases {
|
|
|
|
t.Run(testCase.str, func(t *testing.T) {
|
|
|
|
out := PrefixInList(testCase.str, prefixes)
|
|
|
|
if out != testCase.expected {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" str: %#v", testCase.str)
|
|
|
|
t.Errorf(" prefixes: %#v", prefixes)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expected)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestFilterList(t *testing.T) {
|
|
|
|
input := []string{"a", "b", "c", "c", "b", "d", "a"}
|
|
|
|
filter := []string{"a", "c"}
|
|
|
|
remainder, filtered := FilterList(input, filter)
|
|
|
|
|
|
|
|
expected := []string{"b", "b", "d"}
|
|
|
|
if !reflect.DeepEqual(remainder, expected) {
|
|
|
|
t.Errorf("incorrect remainder output:")
|
|
|
|
t.Errorf(" input: %#v", input)
|
|
|
|
t.Errorf(" filter: %#v", filter)
|
|
|
|
t.Errorf(" expected: %#v", expected)
|
|
|
|
t.Errorf(" got: %#v", remainder)
|
|
|
|
}
|
|
|
|
|
|
|
|
expected = []string{"a", "c", "c", "a"}
|
|
|
|
if !reflect.DeepEqual(filtered, expected) {
|
|
|
|
t.Errorf("incorrect filtered output:")
|
|
|
|
t.Errorf(" input: %#v", input)
|
|
|
|
t.Errorf(" filter: %#v", filter)
|
|
|
|
t.Errorf(" expected: %#v", expected)
|
|
|
|
t.Errorf(" got: %#v", filtered)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRemoveListFromList(t *testing.T) {
|
|
|
|
input := []string{"a", "b", "c", "d", "a", "c", "d"}
|
|
|
|
filter := []string{"a", "c"}
|
|
|
|
expected := []string{"b", "d", "d"}
|
|
|
|
out := RemoveListFromList(input, filter)
|
|
|
|
if !reflect.DeepEqual(out, expected) {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" input: %#v", input)
|
|
|
|
t.Errorf(" filter: %#v", filter)
|
|
|
|
t.Errorf(" expected: %#v", expected)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
}
|
2018-03-06 11:29:27 +01:00
|
|
|
|
|
|
|
func TestRemoveFromList(t *testing.T) {
|
|
|
|
testcases := []struct {
|
|
|
|
name string
|
|
|
|
key string
|
|
|
|
input []string
|
|
|
|
expectedFound bool
|
|
|
|
expectedOut []string
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "remove_one_match",
|
|
|
|
key: "a",
|
|
|
|
input: []string{"a", "b", "c"},
|
|
|
|
expectedFound: true,
|
|
|
|
expectedOut: []string{"b", "c"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "remove_three_matches",
|
|
|
|
key: "a",
|
|
|
|
input: []string{"a", "b", "a", "c", "a"},
|
|
|
|
expectedFound: true,
|
|
|
|
expectedOut: []string{"b", "c"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "remove_zero_matches",
|
|
|
|
key: "X",
|
|
|
|
input: []string{"a", "b", "a", "c", "a"},
|
|
|
|
expectedFound: false,
|
|
|
|
expectedOut: []string{"a", "b", "a", "c", "a"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "remove_all_matches",
|
|
|
|
key: "a",
|
|
|
|
input: []string{"a", "a", "a", "a"},
|
|
|
|
expectedFound: true,
|
|
|
|
expectedOut: []string{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testcases {
|
|
|
|
t.Run(testCase.name, func(t *testing.T) {
|
|
|
|
found, out := RemoveFromList(testCase.key, testCase.input)
|
|
|
|
if found != testCase.expectedFound {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" key: %#v", testCase.key)
|
|
|
|
t.Errorf(" input: %#v", testCase.input)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expectedFound)
|
|
|
|
t.Errorf(" got: %#v", found)
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(out, testCase.expectedOut) {
|
|
|
|
t.Errorf("incorrect output:")
|
|
|
|
t.Errorf(" key: %#v", testCase.key)
|
|
|
|
t.Errorf(" input: %#v", testCase.input)
|
|
|
|
t.Errorf(" expected: %#v", testCase.expectedOut)
|
|
|
|
t.Errorf(" got: %#v", out)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-02-16 08:03:34 +01:00
|
|
|
|
|
|
|
func ExampleCopyOf() {
|
|
|
|
a := []string{"1", "2", "3"}
|
|
|
|
b := CopyOf(a)
|
|
|
|
a[0] = "-1"
|
|
|
|
fmt.Printf("a = %q\n", a)
|
|
|
|
fmt.Printf("b = %q\n", b)
|
|
|
|
|
|
|
|
// Output:
|
|
|
|
// a = ["-1" "2" "3"]
|
|
|
|
// b = ["1" "2" "3"]
|
|
|
|
}
|
|
|
|
|
|
|
|
func ExampleCopyOf_append() {
|
|
|
|
a := make([]string, 1, 2)
|
|
|
|
a[0] = "foo"
|
|
|
|
|
|
|
|
fmt.Println("Without CopyOf:")
|
|
|
|
b := append(a, "bar")
|
|
|
|
c := append(a, "baz")
|
|
|
|
fmt.Printf("a = %q\n", a)
|
|
|
|
fmt.Printf("b = %q\n", b)
|
|
|
|
fmt.Printf("c = %q\n", c)
|
|
|
|
|
|
|
|
a = make([]string, 1, 2)
|
|
|
|
a[0] = "foo"
|
|
|
|
|
|
|
|
fmt.Println("With CopyOf:")
|
|
|
|
b = append(CopyOf(a), "bar")
|
|
|
|
c = append(CopyOf(a), "baz")
|
|
|
|
fmt.Printf("a = %q\n", a)
|
|
|
|
fmt.Printf("b = %q\n", b)
|
|
|
|
fmt.Printf("c = %q\n", c)
|
|
|
|
|
|
|
|
// Output:
|
|
|
|
// Without CopyOf:
|
|
|
|
// a = ["foo"]
|
|
|
|
// b = ["foo" "baz"]
|
|
|
|
// c = ["foo" "baz"]
|
|
|
|
// With CopyOf:
|
|
|
|
// a = ["foo"]
|
|
|
|
// b = ["foo" "bar"]
|
|
|
|
// c = ["foo" "baz"]
|
|
|
|
}
|