Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
6cd5dc44
Commit
6cd5dc44
authored
14 years ago
by
buczekp
Browse files
Options
Downloads
Patches
Plain Diff
[LMS-2106] improved tests
SVN: 20309
parent
baec4923
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
datastore_server/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/RsyncDataSetCopierTest.java
+76
-18
76 additions, 18 deletions
...neric/server/plugins/standard/RsyncDataSetCopierTest.java
with
76 additions
and
18 deletions
datastore_server/sourceTest/java/ch/systemsx/cisd/openbis/dss/generic/server/plugins/standard/RsyncDataSetCopierTest.java
+
76
−
18
View file @
6cd5dc44
...
...
@@ -185,8 +185,20 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
// check that data set is not yet in archive
assertEquals
(
false
,
copiedDataSet
.
exists
());
/*
* archive 1st time
*/
Status
status
=
dataSetCopier
.
copyToDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
status
);
// check that data set is now in archive
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
// check that data set is still in store
assertDs1InStore
();
/*
* archive 2nd time (could happen on crash of DSS, but shouldn't hurt)
*/
status
=
dataSetCopier
.
copyToDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
status
);
// check that data set is now in archive
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
...
...
@@ -197,6 +209,35 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
}
@Test
public
void
testLocalCopyToNonExistantDestination
()
{
Properties
properties
=
createLocalDestinationProperties
();
RsyncDataSetCopier
dataSetCopier
=
new
RsyncDataSetCopier
(
properties
,
copierFactory
,
sshExecutorFactory
);
prepareForCheckingLastModifiedDate
();
destination
.
delete
();
// if destination folder doesn't exist it will be created
File
copiedDataSet
=
ds1ArchivedLocationFile
();
File
copiedData
=
ds1ArchivedDataFile
();
// check that data set is not yet in archive
assertEquals
(
false
,
copiedDataSet
.
exists
());
/*
* archive
*/
Status
status
=
dataSetCopier
.
copyToDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
status
);
// check that data set is now in archive
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
// check that data set is still in store
assertDs1InStore
();
context
.
assertIsSatisfied
();
}
@Test
(
dependsOnMethods
=
"testLocalCopyToDestination"
)
public
void
testLocalCopyTwoDataSetsToDestination
()
{
Properties
properties
=
createLocalDestinationProperties
();
...
...
@@ -213,6 +254,9 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
assertEquals
(
false
,
copiedDataSet1
.
exists
());
assertEquals
(
false
,
copiedDataSet2
.
exists
());
/*
* copy 1st data set
*/
Status
status1
=
dataSetCopier
.
copyToDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
status1
);
...
...
@@ -220,6 +264,9 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
// check that 2nd data set is not yet in archive
assertEquals
(
false
,
copiedDataSet2
.
exists
());
/*
* copy 2nd data set
*/
Status
status2
=
dataSetCopier
.
copyToDestination
(
ds2Location
,
ds2
);
assertEquals
(
Status
.
OK
,
status2
);
assertDs2InArchive
(
copiedDataSet2
,
copiedData2
);
...
...
@@ -233,11 +280,12 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
context
.
assertIsSatisfied
();
}
@Test
public
void
testLocal
CopyAnd
RetrieveFromDestination
()
@Test
(
dependsOnMethods
=
"testLocalCopyToDestination"
)
public
void
testLocalRetrieveFromDestination
()
{
// copy to archive
/*
* copy to archive
*/
Properties
properties
=
createLocalDestinationProperties
();
RsyncDataSetCopier
dataSetCopier
=
new
RsyncDataSetCopier
(
properties
,
copierFactory
,
sshExecutorFactory
);
...
...
@@ -254,7 +302,9 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
assertEquals
(
Status
.
OK
,
status
);
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
// delete from store
/*
* delete from store
*/
try
{
FileUtils
.
deleteDirectory
(
ds1Location
);
...
...
@@ -264,24 +314,33 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
}
assertEquals
(
false
,
ds1Data
.
exists
());
// retrieve from archive
/*
* retrieve from archive - 1st time
*/
Status
statusRetrieve
=
dataSetCopier
.
retrieveFromDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
statusRetrieve
);
assertDs1InStore
();
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
assertDs2InStore
();
// ds2 shouldn't be affected at all
// ds2 shouldn't be affected at all
assertDs2InStore
();
/*
* retrieve from archive - 2nd time (possible e.g. after crash)
*/
statusRetrieve
=
dataSetCopier
.
retrieveFromDestination
(
ds1Location
,
ds1
);
assertEquals
(
Status
.
OK
,
statusRetrieve
);
assertDs1InStore
();
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
assertDs2InStore
();
// ds2 shouldn't be affected at all
context
.
assertIsSatisfied
();
}
@Test
public
void
testLocal
CopyAnd
DeleteFromDestination
()
@Test
(
dependsOnMethods
=
"testLocalCopyToDestination"
)
public
void
testLocalDeleteFromDestination
()
{
// copy to archive
/*
* copy to archive
*/
Properties
properties
=
createLocalDestinationProperties
();
RsyncDataSetCopier
dataSetCopier
=
new
RsyncDataSetCopier
(
properties
,
copierFactory
,
sshExecutorFactory
);
...
...
@@ -298,14 +357,13 @@ public class RsyncDataSetCopierTest extends AbstractFileSystemTestCase
assertEquals
(
Status
.
OK
,
status
);
assertDs1InArchive
(
copiedDataSet
,
copiedData
);
// delete from archive
/*
* delete from archive
*/
Status
statusDelete
=
dataSetCopier
.
deleteFromDestination
(
ds1
);
assertEquals
(
Status
.
OK
,
statusDelete
);
assertEquals
(
false
,
copiedDataSet
.
exists
());
// we didn't delete it from store
assertDs1InStore
();
assertDs1InStore
();
// we didn't delete it from store
context
.
assertIsSatisfied
();
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment