Skip to content

Commit

Permalink
#61 resc tests failures
Browse files Browse the repository at this point in the history
  • Loading branch information
mconway committed Apr 23, 2015
1 parent d59bc03 commit 4564d2f
Showing 1 changed file with 9 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import org.irods.jargon.testutils.filemanip.FileGenerator;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Ignore;
import org.junit.Test;

public class ResourceAOTest {
Expand Down Expand Up @@ -228,9 +229,9 @@ public final void testFindMetadataValuesByMetadataQuery() throws Exception {
ResourceAO resourceAO = accessObjectFactory.getResourceAO(irodsAccount);

// initialize the AVU data
String expectedAttribName = "testattrib1";
String expectedAttribValue = "testvalue1";
String expectedAttribUnits = "test1units";
String expectedAttribName = "testrattrib1";
String expectedAttribValue = "testrvalue1";
String expectedAttribUnits = "testr1units";

AvuData avuData = AvuData.instance(expectedAttribName,
expectedAttribValue, expectedAttribUnits);
Expand Down Expand Up @@ -382,15 +383,16 @@ public final void testListResourceMetadata() throws Exception {

}

@Test
@Ignore
// TODO: see https://github.com/DICE-UNC/jargon/issues/97
public final void testDeleteResourceMetadata() throws Exception {
String testResource = testingProperties
.getProperty(TestingPropertiesHelper.IRODS_RESOURCE_KEY);

// initialize the AVU data
String expectedAttribName = "testattrib1";
String expectedAttribValue = "testvalue1";
String expectedAttribUnits = "test1units";
String expectedAttribName = "testDeleteResourceMetadataattrib1";
String expectedAttribValue = "testDeleteResourceMetadatavalue1";
String expectedAttribUnits = "testDeleteResourceMetadataunits";

IRODSAccount irodsAccount = testingPropertiesHelper
.buildIRODSAdminAccountFromTestProperties(testingProperties);
Expand Down

0 comments on commit 4564d2f

Please sign in to comment.