Skip to content
Snippets Groups Projects
AddSampleLogTest.h 1.66 KiB
Newer Older
#ifndef ADDSAMPLELOGTEST_H_
#define ADDSAMPLELOGTEST_H_

#include <cxxtest/TestSuite.h>

#include <string>

Nick Draper's avatar
Nick Draper committed
#include "WorkspaceCreationHelper.hh"
#include "MantidAPI/MatrixWorkspace.h"
#include "MantidAlgorithms/AddSampleLog.h"

using namespace Mantid::Kernel;
using namespace Mantid::API;
using namespace Mantid::Algorithms;

class AddSampleLogTest : public CxxTest::TestSuite
{
public:

Nick Draper's avatar
Nick Draper committed
	void testInsertion2D()
Nick Draper's avatar
Nick Draper committed
		 ExecuteAlgorithm(WorkspaceCreationHelper::Create2DWorkspace(10,10));
	}

  void testInsertionEvent()
	{
		 ExecuteAlgorithm(WorkspaceCreationHelper::CreateEventWorkspace(10,10));
	}

  void ExecuteAlgorithm(MatrixWorkspace_sptr testWS)
	{
    //add the workspace to the ADS
    AnalysisDataService::Instance().add("AddSampleLogTest_Temporary", testWS);

    //execute algorithm
		AddSampleLog alg;
		TS_ASSERT_THROWS_NOTHING(alg.initialize());
		TS_ASSERT( alg.isInitialized() )

    alg.setPropertyValue("Workspace", "AddSampleLogTest_Temporary");
		alg.setPropertyValue("LogName", "my name");
		alg.setPropertyValue("LogText", "my data");

    TS_ASSERT_THROWS_NOTHING(alg.execute())
    TS_ASSERT( alg.isExecuted() )

Nick Draper's avatar
Nick Draper committed
    //check output
    MatrixWorkspace_sptr output = boost::dynamic_pointer_cast<MatrixWorkspace>(AnalysisDataService::Instance().retrieve(alg.getProperty("Workspace")));
    
    Sample wSpaceSam = output->sample();
    PropertyWithValue<std::string> *testProp =
      dynamic_cast<PropertyWithValue<std::string>*>(wSpaceSam.getLogData("my name"));
    
    TS_ASSERT(testProp)
    TS_ASSERT_EQUALS(testProp->value(), "my data")
Nick Draper's avatar
Nick Draper committed
    //cleanup
    AnalysisDataService::Instance().remove(output->getName());
Nick Draper's avatar
Nick Draper committed