Skip to content
Snippets Groups Projects
FileValidatorTest.h 3.77 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 FILEVALIDATORTEST_H_
#define FILEVALIDATORTEST_H_

#include <cxxtest/TestSuite.h>

#include "MantidKernel/FileValidator.h"
Campbell, Stuart's avatar
Campbell, Stuart committed
#include <Poco/File.h>
class FileValidatorTest : public CxxTest::TestSuite {
  void testConstructors() {
    // empty constructor
    FileValidator v1;
    TS_ASSERT_EQUALS(v1.allowedValues().size(), 0);

    // one with a vector of extensions
    FileValidator v2({"raw", "RAW"});

    // File extensions are converted to lowercase so should have one unique
    // extension
    TS_ASSERT_EQUALS(v2.allowedValues().size(), 1);
  }

  void testPassesOnExistentFile() {
    // Create two files, one with the extension within the validator and one
    // without

    const std::string file_stub = "scratch.";
    const std::string ext1 = "txt";
    const std::string ext2 = "raw";
    Poco::File txt_file(file_stub + ext1);
    Poco::File raw_file(file_stub + ext2);

    try {
      txt_file.createFile();
      raw_file.createFile();
    } catch (std::exception &) {
      TS_FAIL(
          "Error creating test file for \"testPassesOnExistentFile\" test.");
    }

    // FileValidator will suggest txt files as correct extension
    std::vector<std::string> vec(1, "txt");
    FileValidator v1(vec);

    TS_ASSERT_EQUALS(v1.isValid(txt_file.path()), "");
    // Not correct extension but the file exists so we allow it
    TS_ASSERT_EQUALS(v1.isValid(raw_file.path()), "");

    txt_file.remove();
    raw_file.remove();
  }
  void testPassesForMoreComplicatedExtensions() {
    // More general test cases (Refs #1302)
    const std::string file_stub = "scratch";
    const std::string ext1 = ".tar.gz";
    const std::string ext2 = "_event.dat";
    Poco::File txt_file(file_stub + ext1);
    Poco::File raw_file(file_stub + ext2);
    try {
      txt_file.createFile();
      raw_file.createFile();
    } catch (std::exception &) {
      TS_FAIL("Error creating test file for "
              "\"testPassesForMoreComplicatedExtensions\" test.");
    }

    // FileValidator will suggest txt files as correct extension
    std::vector<std::string> vec(1, ".tar.gz");
    FileValidator v1(vec);

    TS_ASSERT_EQUALS(v1.isValid(txt_file.path()), "");
    // Not correct extension but the file exists so we allow it
    TS_ASSERT_EQUALS(v1.isValid(raw_file.path()), "");

    txt_file.remove();
    raw_file.remove();

  void testFailsOnNonexistentFile() {
    std::string NoFile("myJunkFile_hgfvj.cpp");
    std::vector<std::string> vec{"cpp"};
    FileValidator v(vec);
    TS_ASSERT_EQUALS(v.isValid(NoFile), "File \"" + NoFile + "\" not found");

  void testPassesOnNonexistentFile() {
    std::string NoFile("myJunkFile_hgfvj.cpp");
    std::vector<std::string> vec{"cpp"};
    FileValidator v(vec, false);
    TS_ASSERT_EQUALS(v.isValid(NoFile), "");

  void testFailsOnEmptyFileString() {
    FileValidator file_val;
    TS_ASSERT_EQUALS(file_val.isValid(""), "File \"\" not found");
  void testCanWrite() {
    std::string filename("myJunkFile_hgfvj.cpp");
    // file existance is optional
    FileValidator v1(std::vector<std::string>(), false, true);
    TS_ASSERT_EQUALS(v1.isValid(""), "Cannot write to empty filename");
    TS_ASSERT_EQUALS(v1.isValid(filename), "");

    // file existance is required
    FileValidator v2(std::vector<std::string>(), true, true);
    TS_ASSERT_EQUALS(v2.isValid(""), "File \"\" not found");
    TS_ASSERT_EQUALS(v2.isValid(filename),
                     "File \"" + filename + "\" not found");
  }