-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for streaming uploads (should fail on gemstone)
- Loading branch information
Johan Brichau
committed
Feb 7, 2024
1 parent
3acc9ca
commit 48ae6fb
Showing
4 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Tests-Functional.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Seaside-Tests-Functional'! | ||
self packageOrganizer ensurePackage: #'Seaside-Tests-Functional' withTags: #()! |
9 changes: 9 additions & 0 deletions
9
...ebDriverFunctionalTestCase.class/instance/testUploadFunctionalTestWithStreamingUploads.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
testing | ||
testUploadFunctionalTestWithStreamingUploads | ||
|
||
| originalStreamUploadsSetting | | ||
originalStreamUploadsSetting := WAAdmin serverAdaptors first server streamUploads. | ||
[ | ||
WAAdmin serverAdaptors first server streamUploads: true. | ||
self testUploadFunctionalTest | ||
] ensure: [ WAAdmin serverAdaptors first server streamUploads: originalStreamUploadsSetting. ] |
2 changes: 1 addition & 1 deletion
2
repository/Seaside-Tests-Parasol.package/monticello.meta/categories.st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
SystemOrganization addCategory: #'Seaside-Tests-Parasol'! | ||
self packageOrganizer ensurePackage: #'Seaside-Tests-Parasol' withTags: #()! |