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
|
/*
* 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 "testgrt.h"
#include "grt_test_utility.h"
#include "synthetic_mysql_model.h"
#include "../src/db_mysql_diffsqlgen_grant.h"
#include "wb_helpers.h"
using namespace tut;
BEGIN_TEST_DATA_CLASS(test_db_mysql_gen_grant)
public:
GRTManagerTest grtm;
GRT* grt;
TEST_DATA_CONSTRUCTOR(test_db_mysql_gen_grant)
:grtm(false)
, grt(NULL)
{
}
END_TEST_DATA_CLASS
TEST_MODULE(test_db_mysql_gen_grant, "test_db_mysql_gen_grant");
TEST_FUNCTION(1)
{
grt= grtm.get_grt();
grt->scan_metaclasses_in("../../res/grt/");
grt->end_loading_metaclasses();
}
TEST_FUNCTION(10)
{
SynteticMySQLModel model(grt);
model.catalog->users().remove_all();
model.catalog->roles().remove_all();
xRole role("Admin", model);
xUser user("monty", model);
add_privilege(model, role, model.table, "SELECT");
assign_role(user, role);
std::list<std::string> actual;
gen_grant_sql((db_CatalogRef)model.catalog, actual);
std::string expect[]= {"GRANT SELECT ON TABLE `test_schema`.`t1` TO 'monty'"};
assure_containers_equal(actual.begin(), actual.end(), expect, expect + UPPER_BOUND(expect));
}
TEST_FUNCTION(11)
{
SynteticMySQLModel model(grt);
model.catalog->users().remove_all();
model.catalog->roles().remove_all();
xRole adminRole("Admin", model);
xRole userRole("User", model);
add_privilege(model, adminRole, model.table, "INSERT");
add_privilege(model, userRole, model.table, "SELECT");
xUser user1("monty", model);
xUser user2("scott", model);
assign_role(user1, adminRole);
assign_role(user1, userRole);
assign_role(user2, userRole);
std::list<std::string> actual;
gen_grant_sql((db_CatalogRef)model.catalog, actual);
std::string expect[]=
{
"GRANT INSERT ON TABLE `test_schema`.`t1` TO 'monty'",
"GRANT SELECT ON TABLE `test_schema`.`t1` TO 'monty'",
"GRANT SELECT ON TABLE `test_schema`.`t1` TO 'scott'",
};
assure_containers_equal(actual.begin(), actual.end(), expect, expect + UPPER_BOUND(expect));
}
TEST_FUNCTION(12)
{ // test when no databaseObject assigned: use databaseObjectName instead
SynteticMySQLModel model(grt);
model.catalog->users().remove_all();
model.catalog->roles().remove_all();
xRole role("Admin", model);
xUser user("monty", model);
add_privilege(model, role, "TABLE", "dummy_obj", "SELECT");
assign_role(user, role);
std::list<std::string> actual;
gen_grant_sql((db_CatalogRef)model.catalog, actual);
std::string expect[]= {"GRANT SELECT ON TABLE dummy_obj TO 'monty'"};
assure_containers_equal(actual.begin(), actual.end(), expect, expect + UPPER_BOUND(expect));
}
TEST_FUNCTION(13)
{ // test parent role
SynteticMySQLModel model(grt);
model.catalog->users().remove_all();
model.catalog->roles().remove_all();
xRole role("Admin", model);
xRole roleBase("Deleter", model);
role->parentRole(roleBase);
roleBase->childRoles().insert(role);
xUser user("monty", model);
add_privilege(model, role, model.table, "SELECT");
add_privilege(model, roleBase, model.table, "DELETE");
// note: only one role (and one privilege) assigned here but should derive one more (see expect[])
assign_role(user, role);
std::list<std::string> actual;
gen_grant_sql((db_CatalogRef)model.catalog, actual);
std::string expect[]=
{
"GRANT DELETE ON TABLE `test_schema`.`t1` TO 'monty'",
"GRANT SELECT ON TABLE `test_schema`.`t1` TO 'monty'",
};
assure_containers_equal(actual.begin(), actual.end(), expect, expect + UPPER_BOUND(expect));
}
END_TESTS
|