Skip to content
Snippets Groups Projects
AnalysisDataServiceObserverTest.h 7.04 KiB
Newer Older
// Mantid Repository : https://github.com/mantidproject/mantid
//
// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
//     NScD Oak Ridge National Laboratory, European Spallation Source
//     & Institut Laue - Langevin
// SPDX - License - Identifier: GPL - 3.0 +
#ifndef ANALYSISDATASERVICEOBSERVERTEST_H_
#define ANALYSISDATASERVICEOBSERVERTEST_H_

#include <cxxtest/TestSuite.h>

Samuel Jones's avatar
Samuel Jones committed
#include "MantidAPI/Algorithm.h"
#include "MantidAPI/AlgorithmManager.h"
#include "MantidAPI/AnalysisDataServiceObserver.h"
#include "MantidAPI/FrameworkManager.h"
Samuel Jones's avatar
Samuel Jones committed
#include "MantidAPI/MatrixWorkspace.h"
Samuel Jones's avatar
Samuel Jones committed

using namespace Mantid::API;

class MockInheritingClass : public Mantid::API::AnalysisDataServiceObserver {

Samuel Jones's avatar
Samuel Jones committed
public:
  MockInheritingClass()
      : m_anyChangeHandleCalled(false), m_addHandleCalled(false),
        m_replaceHandleCalled(false), m_deleteHandleCalled(false),
        m_clearHandleCalled(false), m_renameHandleCalled(false),
        m_groupHandleCalled(false), m_unGroupHandleCalled(false),
        m_groupUpdateHandleCalled(false) {
    this->observeAll(false);
  }

  ~MockInheritingClass() { this->observeAll(false); }

  void anyChangeHandle() override { m_anyChangeHandleCalled = true; }
  void addHandle(const std::string &wsName, const Workspace_sptr ws) override {
Samuel Jones's avatar
Samuel Jones committed
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_addHandleCalled = true;
  }
  void replaceHandle(const std::string &wsName,
                     const Workspace_sptr ws) override {
Samuel Jones's avatar
Samuel Jones committed
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_replaceHandleCalled = true;
  }
  void deleteHandle(const std::string &wsName,
                    const Workspace_sptr ws) override {
Samuel Jones's avatar
Samuel Jones committed
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_deleteHandleCalled = true;
  }
Samuel Jones's avatar
Samuel Jones committed
  void clearHandle() override { m_clearHandleCalled = true; }
  void renameHandle(const std::string &wsName,
                    const std::string &newName) override {
    UNUSED_ARG(wsName)
    UNUSED_ARG(newName)
    m_renameHandleCalled = true;
  }
Samuel Jones's avatar
Samuel Jones committed
  void groupHandle(const std::string &wsName,
                   const Workspace_sptr ws) override {
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_groupHandleCalled = true;
  }
Samuel Jones's avatar
Samuel Jones committed
  void unGroupHandle(const std::string &wsName,
                     const Workspace_sptr ws) override {
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_unGroupHandleCalled = true;
  }
Samuel Jones's avatar
Samuel Jones committed
  void groupUpdateHandle(const std::string &wsName,
                         const Workspace_sptr ws) override {
    UNUSED_ARG(wsName)
    UNUSED_ARG(ws)
    m_groupUpdateHandleCalled = true;
  }

Samuel Jones's avatar
Samuel Jones committed
public:
  bool m_anyChangeHandleCalled, m_addHandleCalled, m_replaceHandleCalled,
      m_deleteHandleCalled, m_clearHandleCalled, m_renameHandleCalled,
      m_groupHandleCalled, m_unGroupHandleCalled, m_groupUpdateHandleCalled;
Samuel Jones's avatar
Samuel Jones committed
};

class AnalysisDataServiceObserverTest : public CxxTest::TestSuite {
private:
  AnalysisDataServiceImpl &ads;
  std::unique_ptr<MockInheritingClass> m_mockInheritingClass;

Samuel Jones's avatar
Samuel Jones committed
public:
  AnalysisDataServiceObserverTest()
      : ads(AnalysisDataService::Instance()),
        m_mockInheritingClass(std::make_unique<MockInheritingClass>()) {
Samuel Jones's avatar
Samuel Jones committed
    // Loads the framework manager
    const auto &localFrameWorkManager =
        Mantid::API::FrameworkManager::Instance();
    UNUSED_ARG(localFrameWorkManager)
  }
Samuel Jones's avatar
Samuel Jones committed

  void setUp() override {
    ads.clear();
Samuel Jones's avatar
Samuel Jones committed
    m_mockInheritingClass = std::make_unique<MockInheritingClass>();
  }

  void addWorkspaceToADS(std::string name = "dummy") {
Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg =
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "CreateSampleWorkspace");
    alg->setChild(true);
    alg->initialize();
    alg->setPropertyValue("OutputWorkspace", name);
    alg->execute();
    MatrixWorkspace_sptr ws = alg->getProperty("OutputWorkspace");
    ads.addOrReplace(name, ws);
  }

  void test_anyChangeHandle_is_called_on_add() {
    m_mockInheritingClass->observeAll();
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_anyChangeHandleCalled)
  }

  void test_addHandle_is_called_on_add() {
    m_mockInheritingClass->observeAdd();
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_addHandleCalled)
  }

  void test_deleteHandle_is_called_on_delete() {
    addWorkspaceToADS();

    m_mockInheritingClass->observeDelete();
    ads.remove("dummy");

Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_deleteHandleCalled)
  }

  void test_replaceHandle_is_called_on_replace() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");

    m_mockInheritingClass->observeReplace();
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_replaceHandleCalled)
  }

  void test_clearHandle_is_called_on_clear() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");

    m_mockInheritingClass->observeClear();
    ads.clear();

Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_clearHandleCalled)
  }

  void test_renameHandle_is_called_on_rename() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");

    m_mockInheritingClass->observeRename();
Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg =
Samuel Jones's avatar
Samuel Jones committed
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "RenameWorkspace");
    alg->initialize();
    alg->setPropertyValue("InputWorkspace", "dummy");
    alg->setPropertyValue("OutputWorkspace", "dummy2");
    alg->execute();
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_renameHandleCalled)
  }

  void test_groupHandle_is_called_on_group_made() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
    addWorkspaceToADS("dummy2");

    m_mockInheritingClass->observeGroup();

Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg =
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "GroupWorkspaces");
    alg->initialize();
    alg->setPropertyValue("InputWorkspaces", "dummy,dummy2");
    alg->setPropertyValue("OutputWorkspace", "newGroup");
    alg->execute();
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_groupHandleCalled)
  }

  void test_unGroupHandle_is_called_on_un_grouping() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
    addWorkspaceToADS("dummy2");

Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg =
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "GroupWorkspaces");
    alg->initialize();
    alg->setPropertyValue("InputWorkspaces", "dummy,dummy2");
    alg->setPropertyValue("OutputWorkspace", "newGroup");
    alg->execute();

    m_mockInheritingClass->observeUnGroup();

Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg2 =
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "UnGroupWorkspace");
    alg2->initialize();
    alg2->setPropertyValue("InputWorkspace", "newGroup");
    alg2->execute();
Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_unGroupHandleCalled)
  }

  void test_groupUpdated_is_called_on_group_updated() {
Samuel Jones's avatar
Samuel Jones committed
    addWorkspaceToADS("dummy");
    addWorkspaceToADS("dummy2");
    addWorkspaceToADS("dummy3");

Samuel Jones's avatar
Samuel Jones committed
    IAlgorithm_sptr alg =
        Mantid::API::AlgorithmManager::Instance().createUnmanaged(
            "GroupWorkspaces");
    alg->initialize();
    alg->setPropertyValue("InputWorkspaces", "dummy,dummy2");
    alg->setPropertyValue("OutputWorkspace", "newGroup");
    alg->execute();
Samuel Jones's avatar
Samuel Jones committed
    m_mockInheritingClass->observeGroupUpdate();

    ads.addToGroup("newGroup", "dummy3");

Samuel Jones's avatar
Samuel Jones committed
    TS_ASSERT(m_mockInheritingClass->m_groupUpdateHandleCalled)
  }
};

#endif /* ANALYSISDATASERVICEOBSERVERTEST_H_ */