You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add test nest for testing nested folders along side instructions.
- Update some minor stuff in readme somewhat related to this.
- Update upload script to accept files from the newly added `nested` dir in `test-tree/misc`.
Signed-off-by: Fon E. Noel NFEBE <[email protected]>
- Check download folder and ensure that results looks like:
80
+
- Check downloads folder in `test-tree/downloads` and ensure that results looks like:
81
81
82
82
*Result from `tree` program*
83
83
```
@@ -97,7 +97,7 @@ This test case captures what happens if you sync the same path with unchanged co
97
97
98
98
- Generate challenging names if not generated earlier, see [Challenging Names](#challenging-names)
99
99
100
-
Run `./upload-test.py test-tree/challenging-names --only=414 --remote-dir=test-414 --log-file=duplicate-upload-log.txt --remote=prod --archive-path="/archives/QA (0a21-0000)/My Files/"`
100
+
Run `./upload-test.py test-tree/challenging-names --only=414 --remote-dir=test-414 --log-file=log-duplicate-upload.txt --remote=prod --archive-path="/archives/QA (0a21-0000)/My Files/"`
101
101
102
102
*Notice the use of the `--only` flag which specifies only files containing the number `414` should be uploaded, you can change this number to follow a string pattern in the generated challenging names but the provide example works just fine.*
103
103
@@ -136,7 +136,45 @@ and then run `./special-files-downloader.py --my-source my_files.txt`
136
136
137
137
Once the files are on disk:
138
138
139
-
Run `./upload-test.py test-tree/special-files/large --remote-dir=large-files --log-file=large-files-log.txt --remote=prod --archive-path="/archives/QA (0a21-0000)/My Files/"`
139
+
Run `./upload-test.py test-tree/special-files/large --remote-dir=large-files --log-file=log-large-files.txt --remote=prod --archive-path="/archives/QA (0a21-0000)/My Files/"`
140
+
141
+
##### Nested folders/files
142
+
143
+
###### Uploading
144
+
145
+
We have a default nest of folders that goes down 4 levels.
146
+
147
+
Run `./upload-test.py test-tree/misc/nested/ --remote-dir=nested --log-file=log-nested.txt --remote=prod --archive-path="/archives/QA (0a21-0000)/My Files/"`
148
+
149
+
Verify in the Permanent UI that the folder set to remote dir `--remote-dir` in this case `nested` contains the nested folder with the following structure.
150
+
151
+
*Result from `tree` program*
152
+
153
+
```
154
+
test-tree/misc/nested/
155
+
├── nested-level-1
156
+
│ ├── nested-level-2
157
+
│ │ ├── nested-level-3
158
+
│ │ │ └── record-level-3.txt
159
+
│ │ └── record-level-2.txt
160
+
│ └── record-level-1.txt
161
+
└── record-level-0.txt
162
+
```
163
+
164
+
To test a nest with more levels, simply paste the folder structure inside `test-tree/misc/nested` or manually created more folder levels in the existing nest.
165
+
166
+
###### Downloading
167
+
168
+
*The steps in the upload section above must be completed before this step*
- Check downloads folder in `test-tree/downloads` and ensure `downloads/nested` that results looks like the structured previous uploaded in the nested folder upload tests above.
0 commit comments