File: serialization_tests.cc

package info (click to toggle)
scram 0.16.2-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,016 kB
  • sloc: xml: 120,766; cpp: 23,966; python: 1,256; ansic: 100; makefile: 9
file content (60 lines) | stat: -rw-r--r-- 2,100 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
 * Copyright (C) 2017-2018 Olzhas Rakhimov
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "serialization.h"

#include <catch.hpp>

#include "utility.h"

#include "env.h"
#include "initializer.h"
#include "settings.h"
#include "xml.h"

namespace scram::mef::test {

static int i = 0;

TEST_CASE("SerializationTest.InputOutput", "[mef::serialization]") {
  xml::Validator validator(env::install_dir() + "/share/scram/gui.rng");

  std::vector<std::vector<std::string>> inputs = {
      {"tests/input/fta/correct_tree_input.xml"},
      {"tests/input/fta/correct_tree_input_with_probs.xml"},
      {"tests/input/fta/missing_bool_constant.xml"},
      {"tests/input/fta/null_gate_with_label.xml"},
      {"tests/input/fta/flavored_types.xml"},
      {"input/TwoTrain/two_train.xml"},
      {"tests/input/fta/correct_formulas.xml"},
      {"input/Theatre/theatre.xml"},
      {"input/Baobab/baobab2.xml", "input/Baobab/baobab2-basic-events.xml"}};

  std::shared_ptr<Model> model;
  for (const auto& input : inputs) {
    INFO("inputs: " +
         Catch::StringMaker<std::vector<std::string>>::convert(input))
    REQUIRE_NOTHROW(model = mef::Initializer(input, core::Settings{}).model());
    fs::path temp_file = utility::GenerateFilePath();
    INFO("temp file: " + temp_file.string());
    REQUIRE_NOTHROW(Serialize(*model, temp_file.string()));
    REQUIRE_NOTHROW(xml::Document(temp_file.string(), &validator));
    fs::remove(temp_file);
  }
}

}  // namespace scram::mef::test