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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/*
* Copyright (c) 2011, 2014 Oracle and/or its affiliates. All rights reserved.
*
* 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; version 2 of the
* License.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*/
// test model file
#include "workbench/wb_model_file.h"
#include "wb_helpers.h"
#include "grt_test_utility.h"
#include "base/file_utilities.h"
#ifdef _WIN32
#define TMP_DIR "temp"
#else
#define TMP_DIR "/tmp"
#endif
using namespace wb;
BEGIN_TEST_DATA_CLASS(wb_model_file)
public:
WBTester tester;
END_TEST_DATA_CLASS;
TEST_MODULE(wb_model_file, "tests for WB model file");
TEST_FUNCTION(1)
{
bec::GRTManager *grtm;
grt::GRT *grt= tester.wb->get_grt();
#ifdef _WIN32
base::create_directory(TMP_DIR, 0666);
#endif
grtm= bec::GRTManager::get_instance_for(grt);
std::string tmpDir = TMP_DIR;
{
ModelFile mf(tmpDir);
workbench_DocumentRef doc(grt);
// create a test file, change it and then save_as
mf.create(grtm);
doc->name("t1");
workbench_physical_ModelRef pmodel(grt);
pmodel->owner(doc);
db_Catalog catalog(grt);
pmodel->catalog(&catalog);
doc->physicalModels().insert(pmodel);
mf.store_document(grt, doc);
mf.save_to("t1.mwb");
doc->name("t2");
mf.store_document(grt, doc);
mf.save_to("t2.mwb");
}
{
ModelFile mf1(tmpDir);
ModelFile mf2(tmpDir);
mf1.open("t1.mwb", grtm);
mf2.open("t2.mwb", grtm);
workbench_DocumentRef d1, d2;
d1= mf1.retrieve_document(grt);
d2= mf2.retrieve_document(grt);
ensure_equals("document 1 content", *d1->name(), "t1");
ensure_equals("document 2 content", *d2->name(), "t2");
}
}
TEST_FUNCTION(2)
{
//WBTester tester;
bec::GRTManager *grtm;
grt::GRT *grt= tester.wb->get_grt();
grtm= bec::GRTManager::get_instance_for(grt);
// load sakile a bunch of times
std::string tmpDir = TMP_DIR;
ModelFile m(tmpDir);
m.open("data/workbench/sakila.mwb", grtm);
try
{
m.open("data/workbench/sakila.mwb", grtm);
fail("open model file locking didnt work");
}
catch (...)
{
ensure("locking works", true);
}
}
TEST_FUNCTION(3)
{
// WBTester wb;
tester.wb->new_document();
tester.wb->open_document("data/workbench/sakila_full.mwb");
tester.wb->close_document();
}
TEST_FUNCTION(4)
{
std::string tmpDir = TMP_DIR;
ModelFile mf(tmpDir);
std::string comment = mf.read_comment("data/workbench/empty_file.sql");
ensure("4.1 Comment is empty, ", comment.empty());
comment = mf.read_comment("data/workbench/empty_model_with_comment.mwb");
ensure("4.2 Comment is mydb, ", comment == "mydb");
}
END_TESTS
|