Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract mat bundle directory #477

Merged
merged 20 commits into from
Oct 23, 2023
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
6d49c36
Moved the processing of a file to its own method, incorporated a for …
Sep 12, 2023
1bea97f
Finished with directory processing, adding test.
Sep 12, 2023
566dff6
Fixed issue with test, now verify Bundle using instanceof
Sep 12, 2023
d818395
Removed member variable references for readability.
Sep 12, 2023
2631026
Validating input earlier, adjusted BundlUtils to handle logic about v…
Sep 13, 2023
f77bc4f
Merge pull request #1 from echicoine-icf/ExtractMatBundle-dir-processing
echicoine-icf Sep 13, 2023
a7aaea4
80% code coverage on ExtractMatBundleOperation class
Sep 13, 2023
3ac0b4f
Merge pull request #2 from echicoine-icf/code-coverage
echicoine-icf Sep 13, 2023
930c249
Added more robust tests for the supplied output directory by the user
Sep 13, 2023
32bbca6
Removed unused test
Sep 18, 2023
b682935
Added transactional bundle files for tests to POST
Sep 27, 2023
8f8c3a7
Added commented out line for localhost POST testing.
Sep 27, 2023
e255533
Updated ExtractMatBundle tests to cover wider range of file types and…
Oct 10, 2023
d18b300
Eliminating unused resource
Oct 10, 2023
76cd6ea
Added resource ID verification so resources aren't processed repeated…
Oct 11, 2023
afa52ff
Fixed failing tests elsewhere in the app on null outputpath
Oct 11, 2023
273985b
Removing RefreshIG work accidentally included in this branch
Oct 11, 2023
984e7ac
Restoring Main documentation for -dir
Oct 12, 2023
b1ffb04
Merge branch 'cqframework:master' into extract-mat-bundle-directory
echicoine-icf Oct 23, 2023
e6f81c9
Correcting failing test
Oct 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public void run() {
}
File[] files = emptyDir.listFiles();
assertNotNull(files);
assertEquals(40, files.length);
assertTrue(files.length >= 40);
}

@Test
Expand Down