I'm trying to create a custom converter for my test page in SLIM framework for fitnesse.

For this I've created a suite config file.

Here I dont want to use a harcoded path. Instead I want to use the path from an environment variable.

My suite config looks like below where ${OUTPUT_DIR} is for environ variable OUTPUT_DIR having value : D:\myoutputdirectory

<?xml version="1.0" encoding="utf-8" ?>
<suiteConfig>

   <ApplicationUnderTest>
      <AddAssembly>${OUTPUT_DIR}\myassembly.dll</AddAssembly>
      <AddNamespace>mynamespace</AddNamespace>
   </ApplicationUnderTest>

   <Slim.Operators>
      <Add>mynamespace.myconverter</Add>
   </Slim.Operators>

</suiteConfig>

My test page has following defined:

!path ${OUTPUT_DIR}\FitTestInfrastructure.dll
!define COMMAND_PATTERN {%m -r fitSharp.Slim.Service.Runner,dotnet\slim\fitsharp.dll -c dotnet\slim\FitTest.config.xml  %p}
!define TEST_RUNNER {dotnet\slim\Runner.exe}
!define PATH_SEPARATOR {;}
!define TEST_SYSTEM {slim}

When I run the test page it throws an exception saying that the file cannot be loaded.

{{{System.IO.FileNotFoundException: Could not load file or assembly 'file:///D:\tests\Fitnesse\D:\myoutputdirectory\FitTestInfrastructure.dll' or one of its dependencies. The system cannot find the file specified.

Here if you see the error it can be seen that though it recognize the environment variable it also appends the current directory "D:\tests\Fitnesse" to the path and hence cannot find the file required.

this is a strange behavior.

Moreover since I define the assembly path in the !path variable in the test page I tried to remove the AddAsembly & AddNamespace tags from the config file assuming that it should search for my converter in the assembly defined in !path variable. But it that also throws the error as follows:

fitSharp.Machine.Exception.TypeMissingException: Type 'mynamespace.myconverter' not found in assemblies:
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.