File: test_db_mysql_schema_reporting.cpp

package info (click to toggle)
mysql-workbench 6.3.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 113,932 kB
  • ctags: 87,814
  • sloc: ansic: 955,521; cpp: 427,465; python: 59,728; yacc: 59,129; xml: 54,204; sql: 7,091; objc: 965; makefile: 638; sh: 613; java: 237; perl: 30; ruby: 6; php: 1
file content (180 lines) | stat: -rw-r--r-- 5,477 bytes parent folder | download | duplicates (2)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/* 
 * 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
 */

#include "ctemplate/template.h"
#include <fstream>
#include <string>

#include "testgrt.h"
#include "grt_test_utility.h"
#include "grts/structs.db.mysql.h"
#include "grts/structs.workbench.physical.h"
#include "grts/structs.workbench.model.reporting.h"
#include "grti/wb_model_reporting.h"
#include "grt/grt_manager.h"
#include "wb_helpers.h"
#include "wb_model.h"

RegisterTemplateFilename(TEST_01_FN, "data/modules_grt/schema_reporting/schema_reporting_test_1.tpl.html");
#include "../../../testing/tut/data/modules_grt/schema_reporting/schema_reporting_test_1.tpl.html.varnames.h"

#define TEST_01_FO "data/modules_grt/schema_reporting/res_schema_reporting_test_1.html"

#define TEST_02_FI "data/modules_grt/schema_reporting/basic_schema_report_test_model.mwb"
#define TEST_02_FO "data/modules_grt/schema_reporting/res_schema_reporting_test_2.html"

using namespace std;

using ctemplate::Template;
using ctemplate::TemplateDictionary;
using ctemplate::STRIP_WHITESPACE;

BEGIN_TEST_DATA_CLASS(module_db_mysql_schema_reporting)
public:
  GRTManagerTest grtm;
  WbModelImpl* module;
  WBTester wbt;
END_TEST_DATA_CLASS

TEST_MODULE(module_db_mysql_schema_reporting, "DB MySQL: schema reporting");

TEST_FUNCTION(1)
{
  //GRT *grt= grtm.get_grt();

  Template* tpl= Template::GetTemplate(TEST_01_FN, STRIP_WHITESPACE);
  ensure("template ok", tpl!=0);

  TemplateDictionary* main_dict = new TemplateDictionary("schema listing");

  main_dict->SetValue(ksrt1_TITLE, "MySQL Schema Report");

  for(int i= 0; i < 2; i++)
  {
    TemplateDictionary* schema_dict= main_dict->AddSectionDictionary(ksrt1_SCHEMATA);
    schema_dict->SetFormattedValue(ksrt1_SCHEMA_NAME, "Schema_%d", i + 1);

    for(int j= 0; j < 4; j++)
    {
      TemplateDictionary* table_dict= schema_dict->AddSectionDictionary(ksrt1_TABLES);
      table_dict->SetFormattedValue(ksrt1_TABLE_NAME, "Table_%d", j + 1);
    }
  }

  main_dict->SetValue(ksrt1_FOOTER, "Generated by MySQL Workbench.");

  std::string output;
  tpl->Expand(&output, main_dict);

  std::ofstream ofs(TEST_01_FO);
  ofs << output;
}


TEST_FUNCTION(2)
{
//  WBTester wbt;

  wbt.wb->open_document(TEST_02_FI);

  ensure_equals("loaded phys model count",
                wbt.wb->get_document()->physicalModels().count(), 1U);

  db_mysql_CatalogRef catalog= db_mysql_CatalogRef::cast_from(wbt.wb->get_document()->physicalModels().get(0)->catalog());


  Template* tpl= Template::GetTemplate(TEST_01_FN, STRIP_WHITESPACE);
  ensure("template ok", tpl!=0);

  TemplateDictionary* main_dict = new TemplateDictionary("schema listing");

  main_dict->SetValue(ksrt1_TITLE, "MySQL Schema Report");



  for(unsigned int i= 0; i < catalog->schemata().count(); i++)
  {
    TemplateDictionary* schema_dict= main_dict->AddSectionDictionary(ksrt1_SCHEMATA);
    schema_dict->SetValue(ksrt1_SCHEMA_NAME, catalog->schemata().get(i)->name().c_str());

    for(unsigned int j= 0; j < catalog->schemata().get(i)->tables().count(); j++)
    {
      TemplateDictionary* table_dict= schema_dict->AddSectionDictionary(ksrt1_TABLES);
      table_dict->SetValue(ksrt1_TABLE_NAME, catalog->schemata().get(i)->tables().get(j)->name().c_str());
    }
  }

  main_dict->SetValue(ksrt1_FOOTER, "Generated by MySQL Workbench.");

  string output;
  tpl->Expand(&output, main_dict);

  std::ofstream ofs(TEST_02_FO);
  ofs << output;
}

TEST_FUNCTION(10)
{
  string test_filename= "./test_output";

//  WBTester wbt;

  wbt.wb->open_document(TEST_02_FI);

  ensure_equals("loaded phys model count",
                wbt.wb->get_document()->physicalModels().count(), 1U);

  workbench_physical_ModelRef physicalModel= wbt.wb->get_document()->physicalModels().get(0);


  module= wbt.grt->get_native_module<WbModelImpl>();
  ensure("WbModel module initialization", NULL != module);

  grt::DictRef options(wbt.grt);
  options.gset("basedir", wbt.wboptions.basedir);//wbt.wb->get_wb_options().get_string("basedir"));
  options.gset("title", "Test Report");
  options.gset("filename", "TestReport");
  options.gset("fk_show_parent_and_child_table", 1);
  options.gset("output_path", test_filename);

  ssize_t res= module->generateReport(physicalModel, options);
  ensure("generateSchemaReport call failed.", res == 1);


}

TEST_FUNCTION(11)
{
  string test_filename= "./test_output";

//  WBTester wbt;

  wbt.wb->open_document(TEST_02_FI);

  module= wbt.grt->get_native_module<WbModelImpl>();
  ensure("WbModel module initialization", NULL != module);

  grt::StringListRef templates(wbt.grt);
  ssize_t res= module->getAvailableReportingTemplates(templates);
  ensure("getAvailableSchemaReportTemplates call failed.", res == 1);

  ensure("no templates returned.", templates.count() > 0);
}

END_TESTS