blob: 72ac99912e13b4a4f1bfc11d9b8496a9d02fb0ad (
plain)
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
//! ref: composer/tests/Composer/Test/Autoload/AutoloadGeneratorTest.php
/// Creates the working/vendor temp directories, switches into the working dir, and
/// builds the AutoloadGenerator from a mocked Config/InstallationManager/
/// InstalledRepository/EventDispatcher and a BufferIO. The mocks and temp-dir
/// helpers are not available here, so this remains a stub.
fn set_up() {
todo!()
}
/// Restores the original working directory and removes the working/vendor
/// directories created by `set_up`, which is itself a stub.
fn tear_down() {
todo!()
}
struct TearDown;
impl Drop for TearDown {
fn drop(&mut self) {
tear_down();
}
}
// These exercise AutoloadGenerator end-to-end: they build packages, write fixture files to
// a temp dir, run dump() through a mocked InstalledRepository/EventDispatcher and compare
// the generated autoload files. The integration setup (fixtures, mocks, filesystem) is not
// ported yet.
#[test]
#[ignore = "setUp needs mocked Config::get, InstallationManager::getInstallPath, InstalledRepositoryInterface::getCanonicalPackages and TestCase::getUniqueTmpDirectory/ensureDirectoryExistsAndClear; no mock infra exists"]
fn test_root_package_autoloading() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_root_package_dev_autoloading() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_root_package_dev_autoloading_disabled_by_default() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendor_dir_same_as_working_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_root_package_autoloading_alternative_vendor_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_root_package_autoloading_with_target_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_duplicate_files_warning() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendors_autoloading() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendors_autoloading_with_metapackages() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_non_dev_autoload_exclusion_with_recursion() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_non_dev_autoload_should_include_replaced_packages() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_non_dev_autoload_exclusion_with_recursion_replace() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_non_dev_autoload_replaces_nested_requirements() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_phar_autoload() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_psr_to_class_map_ignores_non_existing_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_psr_to_class_map_ignores_non_psr_classes() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendors_class_map_autoloading() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendors_class_map_autoloading_with_target_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_class_map_autoloading_empty_dir_and_exact_file() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_class_map_autoloading_authoritative_and_apcu() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_class_map_autoloading_authoritative_and_apcu_prefix() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_files_autoload_generation() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_files_autoload_generation_remove_extra_entities_from_autoload_files() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_files_autoload_order_by_dependencies() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_override_vendors_autoloading() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_include_path_file_generation() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_include_paths_are_prepended_in_autoload_file() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_include_paths_in_root_package() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_include_path_file_without_paths_is_skipped() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface plus EventDispatcher::dispatch expectations; no mock infra exists"]
fn test_pre_and_post_events_are_dispatched_during_autoload_dump() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_use_global_include_path() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendor_dir_excluded_from_working_dir() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_up_level_relative_paths() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_autoload_rules_in_package_that_does_not_exist_on_disk() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_empty_paths() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_vendor_substring_path() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_exclude_from_classmap() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_generates_platform_check() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_absolute_symlink_with_psr4_does_not_generate_warnings() {
todo!()
}
#[test]
#[ignore = "setUp needs mocked Config/InstallationManager/InstalledRepositoryInterface and TestCase tmp-dir helpers; no mock infra exists"]
fn test_absolute_symlink_with_classmap_exclude_from_classmap() {
todo!()
}
|