Skip to content

Commit

Permalink
improve test case
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Oct 5, 2023
1 parent 092dc09 commit 288d85e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/general/VFSvsDirect.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,9 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
assertTrue(fileExists(pathWithCred),path);
// must exists now (VFS approach with implicit credentials)
assertTrue(fileExists(path),path);

var presignedURL=S3GeneratePresignedURL(path);
assertTrue(fileExists(presignedURL),presignedURL);

////////////////////////////////////////////////////////////////////////
// deleteing the file again
Expand Down Expand Up @@ -135,6 +138,9 @@ component extends="org.lucee.cfml.test.LuceeTestCase" labels="s3" {
// must exists now (VFS approach with implicit credentials)
assertTrue(fileExists(path));

var presignedURL=S3GeneratePresignedURL(path);
assertTrue(fileExists(presignedURL),presignedURL);


////////////////////////////////////////////////////////////////////////
// deleteing the file again VFS approach
Expand Down

0 comments on commit 288d85e

Please sign in to comment.