vote up 0 vote down star

I'm writing a unit test but am having difficulty mocking an object from the ESRI ArcObjects library. This library is actually a COM library which is connected to Java using JIntegra. Maybe I'm doing something wrong. Here is the code:

private IFeatureClass GenerateTable()
{		
	final IFeatureClass output = m_Context.mock( IFeatureClass.class );
	try
	{
		final IQueryFilter filter = new QueryFilter();
		filter.setSubFields( "metID" );

		m_Context.checking(new Expectations()
		{
			{
				allowing(output).search( filter, true ); will( returnValue( GenerateSearchResults() ) );
			}
		});
	}
	catch(Exception e)
	{
		return null;
	}

	return output;
}

Here is the error that is thrown. Note that ArcGIS/bin is on the system PATH:

Could not load native libraries. ArcGIS/bin should be added to the system PATH environment variable. java.lang.UnsatisfiedLinkError: no ntvauth in java.library.path at java.lang.ClassLoader.loadLibrary(Unknown Source) at java.lang.Runtime.loadLibrary0(Unknown Source) at java.lang.System.loadLibrary(Unknown Source) at com.esri.arcgis.interop.NativeLoader.loadLibrary(Unknown Source) at com.esri.arcgis.interop.NativeAuth.c(Unknown Source) at com.esri.arcgis.interop.c.a(Unknown Source) at com.esri.arcgis.interop.bc.a(Unknown Source) at com.esri.arcgis.interop.jb.a(Unknown Source) at com.esri.arcgis.interop.Dispatch.createDispatch(Unknown Source) at com.esri.arcgis.interop.Dispatch.(Unknown Source) at com.esri.arcgis.geodatabase.IQueryFilterProxy.(Unknown Source) java.lang.UnsatisfiedLinkError: no ntvauth in java.library.path at com.esri.arcgis.geodatabase.QueryFilter.(Unknown Source) at com.esri.arcgis.geodatabase.QueryFilter.(Unknown Source) at com.aer.btra.acoustic.amn.conversion.AcousticIDConversionRefactor.GenerateTable(AcousticIDConversionRefactor.java:91) at com.aer.btra.acoustic.amn.conversion.AcousticIDConversionRefactor.access$0(AcousticIDConversionRefactor.java:86) at com.aer.btra.acoustic.amn.conversion.AcousticIDConversionRefactor$2.(AcousticIDConversionRefactor.java:36) at com.aer.btra.acoustic.amn.conversion.AcousticIDConversionRefactor.MatchOriginal(AcousticIDConversionRefactor.java:34) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) at java.lang.reflect.Method.invoke(Unknown Source) at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:66) at org.jmock.integration.junit4.JMock$1.invoke(JMock.java:37) at org.junit.internal.runners.MethodRoadie.runTestMethod(MethodRoadie.java:105) at org.junit.internal.runners.MethodRoadie$2.run(MethodRoadie.java:86) at org.junit.internal.runners.MethodRoadie.runBeforesThenTestThenAfters(MethodRoadie.java:94) at org.junit.internal.runners.MethodRoadie.runTest(MethodRoadie.java:84) at org.junit.internal.runners.MethodRoadie.run(MethodRoadie.java:49) at org.junit.internal.runners.JUnit4ClassRunner.invokeTestMethod(JUnit4ClassRunner.java:96) at org.junit.internal.runners.JUnit4ClassRunner.runMethods(JUnit4ClassRunner.java:59) at org.junit.internal.runners.JUnit4ClassRunner$1.run(JUnit4ClassRunner.java:52) at org.junit.internal.runners.ClassRoadie.runUnprotected(ClassRoadie.java:34) at org.junit.internal.runners.ClassRoadie.runProtected(ClassRoadie.java:44) at org.junit.internal.runners.JUnit4ClassRunner.run(JUnit4ClassRunner.java:50) at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:45) at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386) at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)

flag

2 Answers

vote up 1 vote down

Looks like your test setup method is too tightly coupled with a REAL QueryFilter. Just mock IQueryFilter interface.

Also, written as it is, your allowing clause will never trigger, as filter object is local to the function GenerateTable. Either pass filter object as a parameter into GenerateTable, or move checking to the caller of this method.

link|flag
+1 for trying to help. If I mock that IQueryFilter then it causes the same error to be thrown at the site of the real IQueryFilter call. IFeatureClass, IQueryFilter and QueryFilter are all the third party COM components. – wheaties Oct 21 at 19:05
Google no ntvauth in java.library.path and found this: support.esri.com/index.cfm?fa=knowledgebase.techa… – Alexander Pogrebnyak Oct 21 at 20:33
I still think that you should create a shym interface layer between your program and ESRI ArcObjects library that you can easily mock in your tests – Alexander Pogrebnyak Oct 21 at 20:35
I wish I could. The above mentioned code is there to initialize a component of a class which is designed around connecting to and reading from an ESRI FeatureClass. Also, both you and Steve saw that there was an initialization error. I have overcome this but still am beset by mock errors. We've decided to just create a test featureclass and pass this along as part of the unit testing package. It's ugly but I was spending too long creating a simple unit test. – wheaties Oct 22 at 13:33
vote up 1 vote down

My reading of the stack trace is that the exception is thrown during the instantiation of the QueryFilter, so it's nothing to do with JMock. Have you tried creating one in a simpler test?

I'd also suggest not catching the Exception but just letting it propagate up and stop the test. Unit test code should be so simple that there's no decision-making, like trapping exceptions.

link|flag
Yes, you are right. There was an error with instantiation of the object. – wheaties Oct 22 at 13:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.