Lewis,
Haven't tried installing from the trunk recently but IIRC the PathUtils is sort
of a string replace utility that utilizes environment variables and metadata.
This class is used pervasively throughout the codebase. Here is an example of
what it does:
Metadata metadata = new Metadata();
metadata.addMetadata("Collection", "production");
String output =
PathUtils.doDynamicReplacement("/usr/local/archive/[Collection]/[VERSION]",
metadata);
If there is an environment variable of VERSION set to say "0.2" then output
would be:
/usr/local/archive/production/0.2
One more way under documented feature of this class is the ability to generate
dates to a particular precision and format them. I'd give an example here but I
don’t want to do so inaccurately so maybe someone else will chime in.
--Paul
From: Lewis John Mcgibbney
<[email protected]<mailto:[email protected]>>
Reply-To: "[email protected]<mailto:[email protected]>"
<[email protected]<mailto:[email protected]>>
Date: Wednesday, November 6, 2013 6:47 AM
To: "[email protected]<mailto:[email protected]>"
<[email protected]<mailto:[email protected]>>
Subject: TestPathUtils#testDoDynamicReplacement() failing locally
Hi Folks,
I am not able to install OODT trunk locally recently due to the following test
which is failing
https://svn.apache.org/repos/asf/oodt/trunk/metadata/src/test/org/apache/oodt/cas/metadata/util/TestPathUtils.java
Here is my log output. Can anyone else reproduce this error?
I am also a it confused to what PathUtils#doDynamicReplacement actually does.
https://svn.apache.org/repos/asf/oodt/trunk/metadata/src/main/java/org/apache/oodt/cas/metadata/util/PathUtils.java
It is not documented and wraps several other methods. Can someone please help
me out here?
Thanks
Lewis
junit.framework.ComparisonFailure: expected:<47[50002]01.000> but
was:<47[49966]01.000>
at junit.framework.Assert.assertEquals(Assert.java:81)
at junit.framework.Assert.assertEquals(Assert.java:87)
at
org.apache.oodt.cas.metadata.util.TestPathUtils.testDoDynamicReplacement(TestPathUtils.java:58)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at junit.framework.TestCase.runTest(TestCase.java:164)
at junit.framework.TestCase.runBare(TestCase.java:130)
at junit.framework.TestResult$1.protect(TestResult.java:106)
at junit.framework.TestResult.runProtected(TestResult.java:124)
at junit.framework.TestResult.run(TestResult.java:109)
at junit.framework.TestCase.run(TestCase.java:120)
at junit.framework.TestSuite.runTest(TestSuite.java:230)
at junit.framework.TestSuite.run(TestSuite.java:225)
at
org.eclipse.jdt.internal.junit.runner.junit3.JUnit3TestReference.run(JUnit3TestReference.java:131)
at
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
at
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)
--
Lewis