-
Notifications
You must be signed in to change notification settings - Fork 725
/
Copy pathfile_picker_linux_test.dart
207 lines (166 loc) · 5.61 KB
/
file_picker_linux_test.dart
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
@TestOn('linux')
import 'package:file_picker/src/file_picker.dart';
import 'package:file_picker/src/file_picker_linux.dart';
import 'package:flutter_test/flutter_test.dart';
void main() {
final imageTestFile = '/tmp/test_linux.jpg';
final pdfTestFile = '/tmp/test_linux.pdf';
final yamlTestFile = '/tmp/test_linux.yml';
group('fileTypeToFileFilter()', () {
test('should return the file filter', () {
final picker = FilePickerLinux();
expect(
picker.fileTypeToFileFilter(FileType.any, null),
equals(''),
);
expect(
picker.fileTypeToFileFilter(FileType.audio, null),
equals('*.aac *.midi *.mp3 *.ogg *.wav'),
);
expect(
picker.fileTypeToFileFilter(FileType.image, null),
equals('*.bmp *.gif *.jpeg *.jpg *.png'),
);
expect(
picker.fileTypeToFileFilter(FileType.media, null),
equals(
'*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv *.bmp *.gif *.jpeg *.jpg *.png',
),
);
expect(
picker.fileTypeToFileFilter(FileType.video, null),
equals('*.avi *.flv *.mkv *.mov *.mp4 *.mpeg *.webm *.wmv'),
);
});
test(
'should return the file filter when given a list of custom file extensions',
() {
final picker = FilePickerLinux();
expect(
picker.fileTypeToFileFilter(FileType.custom, ['dart']),
equals('*.dart'),
);
expect(
picker.fileTypeToFileFilter(FileType.custom, ['dart', 'html']),
equals('*.dart *.html'),
);
});
});
group('resultStringToFilePaths()', () {
test('should interpret the result of picking a single file', () async {
final picker = FilePickerLinux();
final filePaths = picker.resultStringToFilePaths(imageTestFile);
expect(filePaths.length, equals(1));
expect(filePaths[0], imageTestFile);
});
test('should return an empty list if the file picker result was empty',
() async {
final picker = FilePickerLinux();
final filePaths = picker.resultStringToFilePaths('');
expect(filePaths.length, equals(0));
});
test('should interpret the result of picking multiple files', () async {
final picker = FilePickerLinux();
final filePaths = picker.resultStringToFilePaths(
'$imageTestFile|$pdfTestFile|$yamlTestFile',
);
expect(filePaths.length, equals(3));
expect(filePaths[0], equals(imageTestFile));
expect(filePaths[1], equals(pdfTestFile));
expect(filePaths[2], equals(yamlTestFile));
});
test('should interpret the result of picking a directory', () async {
final picker = FilePickerLinux();
final filePaths = picker.resultStringToFilePaths(
'/home/john/studies',
);
expect(filePaths.length, equals(1));
expect(filePaths[0], equals('/home/john/studies'));
});
});
group('generateCommandLineArguments()', () {
test('should generate the arguments for picking a single file', () {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select a file:',
multipleFiles: false,
pickDirectory: false,
);
expect(
cliArguments.join(' '),
equals("""--file-selection --title Select a file:"""),
);
});
test('should generate the arguments for the save-file dialog', () {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select output file:',
multipleFiles: false,
pickDirectory: false,
saveFile: true,
fileName: 'test.out',
);
expect(
cliArguments.join(' '),
equals(
"""--file-selection --title Select output file: --save --filename=test.out"""),
);
});
test('should generate the arguments for picking multiple files', () {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select files:',
multipleFiles: true,
pickDirectory: false,
);
expect(
cliArguments.join(' '),
equals("""--file-selection --title Select files: --multiple"""),
);
});
test(
'should generate the arguments for picking a single file with a custom file filter',
() {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select a file:',
fileFilter: '*.dart *.yml',
multipleFiles: false,
pickDirectory: false,
);
expect(
cliArguments.join(' '),
equals(
"""--file-selection --title Select a file: --file-filter=*.dart *.yml""",
),
);
});
test(
'should generate the arguments for picking multiple files with a custom file filter',
() {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select HTML files:',
fileFilter: '*.html',
multipleFiles: true,
pickDirectory: false,
);
expect(
cliArguments.join(' '),
equals(
"""--file-selection --title Select HTML files: --file-filter=*.html --multiple"""),
);
});
test('should generate the arguments for picking a directory', () {
final picker = FilePickerLinux();
final cliArguments = picker.generateCommandLineArguments(
'Select a directory:',
pickDirectory: true,
);
expect(
cliArguments.join(' '),
equals("""--file-selection --title Select a directory: --directory"""),
);
});
});
}