File: list_test.go

package info (click to toggle)
golang-github-minio-pkg 3.1.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,500 kB
  • sloc: xml: 37; makefile: 35; asm: 22
file content (182 lines) | stat: -rw-r--r-- 3,844 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// Copyright (c) 2015-2023 MinIO, Inc.
//
// This file is part of MinIO Object Storage stack
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

package ellipses

import (
	"fmt"
	"reflect"
	"strings"
	"testing"
)

// Test tests if args has a list sequence
func TestHasList(t *testing.T) {
	testCases := []struct {
		args       []string
		expectedOk bool
	}{
		{
			[]string{""},
			false,
		},
		{
			[]string{"64"},
			false,
		},
		{
			[]string{"{1..64}"},
			false,
		},
		{
			[]string{"{1..2..}"},
			false,
		},
		{
			[]string{"1"},
			false,
		},
		{
			[]string{"{1}"},
			false,
		},
		{
			[]string{"{1,2}"},
			true,
		},
		{
			[]string{"{a,b}"},
			true,
		},
		{
			[]string{"http://minio{1,2,3,4}/export/disk"},
			true,
		},
		{
			[]string{"http://minio{1,2,3,4}/export/disk{1,2,3,4}"},
			true,
		},
	}

	for i, testCase := range testCases {
		t.Run(fmt.Sprintf("Test%d", i+1), func(t *testing.T) {
			gotOk := HasList(testCase.args...)
			if gotOk != testCase.expectedOk {
				t.Errorf("Expected %t, got %t", testCase.expectedOk, gotOk)
			}
		})
	}
}

// Test tests find list sequences patterns.
func TestFindListPatterns(t *testing.T) {
	testCases := []struct {
		pattern string
		success bool
		want    [][]string
	}{
		// Tests for all invalid inputs
		0: {
			pattern: "{1..64}",
		},
		1: {
			pattern: "1...64",
		},
		2: {
			pattern: "...",
		},
		3: {
			pattern: "{1...",
		},
		4: {
			pattern: "...64}",
		},
		5: {
			pattern: "{...}",
		},
		6: {
			pattern: "{1}",
		},
		7: {
			pattern: "{,}",
		},
		8: {
			pattern: "{1,}",
		},
		9: {
			pattern: "{1,,}",
		},
		10: {
			pattern: "{1,2",
		},
		11: {
			pattern: "mydisk-{a,z",
		},
		// Test for valid input.
		12: {
			pattern: "{1,2}",
			success: true,
			want:    [][]string{{"1"}, {"2"}},
		},
		13: {
			pattern: "{1,2}/{3,4}",
			success: true,
			want:    [][]string{{"1/", "3"}, {"2/", "3"}, {"1/", "4"}, {"2/", "4"}},
		},
		14: {
			pattern: "/mnt/disk{1,2,3,4}/",
			success: true,
			want:    [][]string{{"/mnt/disk1/"}, {"/mnt/disk2/"}, {"/mnt/disk3/"}, {"/mnt/disk4/"}},
		},
		15: {
			pattern: "http://minio:9000/disk/{1,2,3,4}/",
			success: true,
			want:    [][]string{{"http://minio:9000/disk/1/"}, {"http://minio:9000/disk/2/"}, {"http://minio:9000/disk/3/"}, {"http://minio:9000/disk/4/"}},
		},
	}
	for i, testCase := range testCases {
		if testCase.pattern == "" {
			continue
		}
		t.Run(fmt.Sprintf("Test%d", i), func(t *testing.T) {
			argP, err := FindListPatterns(testCase.pattern)
			if err != nil && testCase.success {
				t.Errorf("Expected success but failed instead %s", err)
			}
			if err == nil && !testCase.success {
				t.Errorf("Expected failure but passed instead")
			}
			if err == nil {
				got := argP.Expand()
				gotCount := len(got)
				if gotCount != len(testCase.want) {
					t.Errorf("Expected %d, got %d", len(testCase.want), gotCount)
				}
				repl := func(v interface{}) string {
					s := fmt.Sprintf("%#v", v)
					// Clean up unneeded declarations
					s = strings.Replace(s, `[]string{"`, `{"`, -1)
					return s
				}
				if !reflect.DeepEqual(got, testCase.want) {
					t.Errorf("want %s,", repl(testCase.want))
					t.Errorf("got %s,", repl(got))
				}
			}
		})
	}
}