use of com.axway.ats.rbv.filesystem.rules.FileSizeRule in project ats-framework by Axway.
the class Test_FileSizeRule method isMatchInvalidMetaDataContent.
@Test(expected = MetaDataIncorrectException.class)
public void isMatchInvalidMetaDataContent() throws Exception {
expect(pack.getSize()).andReturn(100l);
replayAll();
FileSizeRule rule = new FileSizeRule(100l, "isMatchInvalidMetaDataContent", true);
MetaData metaData = new MetaData();
assertFalse(rule.isMatch(metaData));
verifyAll();
}
use of com.axway.ats.rbv.filesystem.rules.FileSizeRule in project ats-framework by Axway.
the class Test_FileSizeRule method isMatchNullMetaDataContent.
@Test(expected = MetaDataIncorrectException.class)
public void isMatchNullMetaDataContent() throws Exception {
expect(pack.getSize()).andReturn(100l);
replayAll();
FileSizeRule rule = new FileSizeRule(100l, "isMatchNullMetaDataContent", true);
MetaData metaData = new FileSystemMetaData(null);
assertFalse(rule.isMatch(metaData));
verifyAll();
}
use of com.axway.ats.rbv.filesystem.rules.FileSizeRule in project ats-framework by Axway.
the class Test_FileSizeRule method constructWithNullMachine.
@Test
public void constructWithNullMachine() throws Exception {
expectNew(FilePackage.class, null, null, testPath).andReturn(pack);
expect(pack.getSize()).andReturn(100l);
replayAll();
FileSizeRule rule = new FileSizeRule(null, testPath, "constructWithNullMachine", true);
assertTrue(rule != null);
verifyAll();
}
use of com.axway.ats.rbv.filesystem.rules.FileSizeRule in project ats-framework by Axway.
the class Test_FileSizeRule method isMatchConstructWithFilePositive.
@Test
public void isMatchConstructWithFilePositive() throws Exception {
expectNew(FilePackage.class, null, null, testPath).andReturn(pack);
expect(pack.getSize()).andReturn(100l).times(2);
replayAll();
FileSizeRule rule = new FileSizeRule(null, testPath, "isMatchConstructWithFilePositive", true);
MetaData metaData = new FileSystemMetaData(pack);
assertTrue(rule.isMatch(metaData));
verifyAll();
}
use of com.axway.ats.rbv.filesystem.rules.FileSizeRule in project ats-framework by Axway.
the class FileSystemVerification method checkSize.
/**
* Add rule to check that the size of the received file is the same
* as the size of the source file
*
* @param srcAtsAgent the remote ATS agent address on which the source file is located
* @param srcFile the full name of the file
* @throws RbvException thrown on error
*/
@PublicAtsApi
public void checkSize(String srcAtsAgent, String srcFile) throws RbvException {
FileSizeRule rule = new FileSizeRule(srcAtsAgent, srcFile, "checkSize", true);
rootRule.addRule(rule);
}
Aggregations