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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.lang.UDAPermsTestz
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.sql.Connection;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
/**
* <p>
* Test permissions on user-defined aggregates. See DERBY-672.
* </p>
*/
public class UDAPermsTest extends GeneratedColumnsHelper
{
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTANTS
//
///////////////////////////////////////////////////////////////////////////////////
private static final String TEST_DBO = "TEST_DBO";
private static final String RUTH = "RUTH";
private static final String ALICE = "ALICE";
private static final String FRANK = "FRANK";
private static final String TONY = "TONY";
private static final String[] LEGAL_USERS = { TEST_DBO, ALICE, RUTH, FRANK, TONY };
private static final String MISSING_ROUTINE = "42Y03";
private static final String IMPLICIT_CAST_ERROR = "42Y22";
private static final String PARSE_ERROR = "42X01";
private static final String BAD_DISTINCT = "42XAS";
///////////////////////////////////////////////////////////////////////////////////
//
// STATE
//
///////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////
//
// CONSTRUCTOR
//
///////////////////////////////////////////////////////////////////////////////////
/**
* Create a new instance.
*/
public UDAPermsTest(String name)
{
super(name);
}
///////////////////////////////////////////////////////////////////////////////////
//
// JUnit BEHAVIOR
//
///////////////////////////////////////////////////////////////////////////////////
/**
* Construct top level suite in this JUnit test
*/
public static Test suite()
{
BaseTestSuite suite = (BaseTestSuite)TestConfiguration.embeddedSuite(
UDAPermsTest.class);
Test cleanTest = new CleanDatabaseTestSetup( suite );
Test authenticatedTest = DatabasePropertyTestSetup.builtinAuthentication
( cleanTest, LEGAL_USERS, "udaPermissions" );
Test authorizedTest = TestConfiguration.sqlAuthorizationDecorator( authenticatedTest );
return authorizedTest;
}
///////////////////////////////////////////////////////////////////////////////////
//
// TESTS
//
///////////////////////////////////////////////////////////////////////////////////
/**
* <p>
* Test that you need USAGE privilege on an aggregate in order to invoke it.
* and in order to declare objects which mention that type.
* </p>
*/
public void test_001_basicGrant()
throws Exception
{
Connection dboConnection = openUserConnection( TEST_DBO );
Connection ruthConnection = openUserConnection( RUTH );
Connection aliceConnection = openUserConnection( ALICE );
//
// Create an aggregate and table.
//
goodStatement
(
ruthConnection,
"create derby aggregate mode_01 for int\n" +
"external name 'org.apache.derbyTesting.functionTests.tests.lang.ModeAggregate'\n"
);
goodStatement
(
ruthConnection,
"create table mode_inputs_01( a int, b int )\n"
);
goodStatement
(
ruthConnection,
"insert into mode_inputs_01( a, b ) values ( 1, 1 ), ( 1, 2 ), ( 1, 2 ), ( 1, 2 ), ( 2, 3 ), ( 2, 3 ), ( 2, 4 )\n"
);
goodStatement
(
ruthConnection,
"grant select on mode_inputs_01 to public\n"
);
expectExecutionError
(
aliceConnection,
LACK_USAGE_PRIV,
"select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a\n"
);
expectExecutionError
(
aliceConnection,
LACK_USAGE_PRIV,
"create view v_alice_01( a, modeOfA ) as select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a\n"
);
//
// The DBO however is almighty.
//
assertResults
(
dboConnection,
"select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a",
new String[][]
{
{ "1", "2" },
{ "2", "3" },
},
false
);
goodStatement
(
dboConnection,
"create view v_dbo_01( a, modeOfA ) as select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a\n"
);
assertResults
(
dboConnection,
"select * from v_dbo_01",
new String[][]
{
{ "1", "2" },
{ "2", "3" },
},
false
);
//
// Now grant USAGE on the user-defined aggregate. User Alice should now have all the
// privileges she needs.
//
goodStatement
(
ruthConnection,
"grant usage on derby aggregate mode_01 to public\n"
);
assertResults
(
aliceConnection,
"select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a",
new String[][]
{
{ "1", "2" },
{ "2", "3" },
},
false
);
goodStatement
(
aliceConnection,
"create view v_alice_01( a, modeOfA ) as select a, ruth.mode_01( b ) from ruth.mode_inputs_01 group by a\n"
);
assertResults
(
aliceConnection,
"select * from v_alice_01",
new String[][]
{
{ "1", "2" },
{ "2", "3" },
},
false
);
}
/**
* <p>
* Test that USAGE privilege can't be revoked if it would make objects
* unusable by their owners.
* </p>
*/
public void test_002_basicRevoke()
throws Exception
{
Connection dboConnection = openUserConnection( TEST_DBO );
Connection ruthConnection = openUserConnection( RUTH );
Connection aliceConnection = openUserConnection( ALICE );
//
// Create an aggregate and table.
//
goodStatement
(
ruthConnection,
"create derby aggregate mode_02 for int\n" +
"external name 'org.apache.derbyTesting.functionTests.tests.lang.ModeAggregate'\n"
);
goodStatement
(
ruthConnection,
"create table mode_inputs_02( a int, b int )\n"
);
goodStatement
(
ruthConnection,
"grant select on mode_inputs_02 to public\n"
);
goodStatement
(
ruthConnection,
"insert into mode_inputs_02( a, b ) values ( 1, 1 ), ( 1, 2 ), ( 1, 2 ), ( 1, 2 ), ( 2, 3 ), ( 2, 3 ), ( 2, 4 )\n"
);
// only RESTRICTed revocations allowed
expectCompilationError( ruthConnection, SYNTAX_ERROR, "revoke usage on derby aggregate mode_02 from ruth\n" );
// can't revoke USAGE from owner
expectCompilationError
(
ruthConnection,
GRANT_REVOKE_NOT_ALLOWED,
"revoke usage on derby aggregate mode_02 from ruth restrict\n"
);
String grantUsage = "grant usage on derby aggregate mode_02 to alice\n";
String revokeUsage = "revoke usage on derby aggregate mode_02 from alice restrict\n";
String createStatement;
String dropStatement;
String badRevokeSQLState;
// can't revoke USAGE if a view depends on it
createStatement =
"create view v_alice_02( a, modeOfA ) as select a, ruth.mode_02( b ) from ruth.mode_inputs_02 group by a"
;
dropStatement = "drop view v_alice_02\n";
badRevokeSQLState = VIEW_DEPENDENCY;
verifyRevokePrivilege
(
ruthConnection,
aliceConnection,
grantUsage,
revokeUsage,
createStatement,
dropStatement,
badRevokeSQLState
);
// can't revoke USAGE if a trigger depends on it
goodStatement( aliceConnection, "create table t_source_02( a int )\n" );
goodStatement( aliceConnection, "create table t_target_02( a int )\n" );
createStatement =
"create trigger t_insert_trigger_02\n" +
"after insert on t_source_02\n" +
"for each row\n" +
"insert into t_target_02( a ) select ruth.mode_02( b ) from ruth.mode_inputs_02\n";
dropStatement = "drop trigger t_insert_trigger_02\n";
badRevokeSQLState = OPERATION_FORBIDDEN;
verifyRevokePrivilege
(
ruthConnection,
aliceConnection,
grantUsage,
revokeUsage,
createStatement,
dropStatement,
badRevokeSQLState
);
}
/**
* <p>
* Test that you need USAGE privilege on user-defined types in order to use them in
* user-defined aggregates.
* </p>
*/
public void test_003_typePrivs()
throws Exception
{
Connection ruthConnection = openUserConnection( RUTH );
Connection aliceConnection = openUserConnection( ALICE );
// can't revoke USAGE on a type if an aggregate's input/return depends on it
goodStatement
(
ruthConnection,
"create type Price external name 'org.apache.derbyTesting.functionTests.tests.lang.Price' language java"
);
String grantUsage = "grant usage on type Price to public";
String revokeUsage = "revoke usage on type Price from public restrict";
String createStatement =
"create derby aggregate priceMode for ruth.Price\n" +
"external name 'org.apache.derbyTesting.functionTests.tests.lang.GenericMode'\n";
String dropStatement = "drop derby aggregate priceMode restrict";
String badRevokeSQLState = ROUTINE_DEPENDS_ON_TYPE;
verifyRevokePrivilege
(
ruthConnection,
aliceConnection,
grantUsage,
revokeUsage,
createStatement,
dropStatement,
badRevokeSQLState
);
// can't revoke USAGE on a type if an aggregate's input depends on it
goodStatement
(
ruthConnection,
"create type Price_input external name 'org.apache.derbyTesting.functionTests.tests.lang.Price' language java"
);
goodStatement
(
ruthConnection,
"create type Price_return external name 'org.apache.derbyTesting.functionTests.tests.lang.Price' language java"
);
goodStatement
(
ruthConnection,
"grant usage on type Price_return to public"
);
grantUsage = "grant usage on type Price_input to public";
revokeUsage = "revoke usage on type Price_input from public restrict";
createStatement =
"create derby aggregate priceMode for ruth.Price_input returns ruth.Price_return\n" +
"external name 'org.apache.derbyTesting.functionTests.tests.lang.GenericMode'\n";
dropStatement = "drop derby aggregate priceMode restrict";
badRevokeSQLState = ROUTINE_DEPENDS_ON_TYPE;
verifyRevokePrivilege
(
ruthConnection,
aliceConnection,
grantUsage,
revokeUsage,
createStatement,
dropStatement,
badRevokeSQLState
);
// can't revoke USAGE on a type if an aggregate's return value depends on it
goodStatement
(
ruthConnection,
"create type Price_input_2 external name 'org.apache.derbyTesting.functionTests.tests.lang.Price' language java"
);
goodStatement
(
ruthConnection,
"create type Price_return_2 external name 'org.apache.derbyTesting.functionTests.tests.lang.Price' language java"
);
goodStatement
(
ruthConnection,
"grant usage on type Price_input_2 to public"
);
grantUsage = "grant usage on type Price_return_2 to public";
revokeUsage = "revoke usage on type Price_return_2 from public restrict";
createStatement =
"create derby aggregate priceMode for ruth.Price_input_2 returns ruth.Price_return_2\n" +
"external name 'org.apache.derbyTesting.functionTests.tests.lang.GenericMode'\n";
dropStatement = "drop derby aggregate priceMode restrict";
badRevokeSQLState = ROUTINE_DEPENDS_ON_TYPE;
verifyRevokePrivilege
(
ruthConnection,
aliceConnection,
grantUsage,
revokeUsage,
createStatement,
dropStatement,
badRevokeSQLState
);
}
/**
* <p>
* Test that we fixed an NPE in resolving function names when the
* schema hasn't been created yet.
* </p>
*/
public void test_004_emptySchema()
throws Exception
{
Connection tonyConnection = openUserConnection( TONY );
expectCompilationError( tonyConnection, MISSING_ROUTINE, "values toString( 100 )" );
}
/**
* <p>
* Test that anyone can run the modern, builtin system aggregates
* which implement org.apache.derby.agg.Aggregator.
* </p>
*/
public void test_005_builtinAggregators()
throws Exception
{
Connection dboConnection = openUserConnection( TEST_DBO );
Connection ruthConnection = openUserConnection( RUTH );
createSchema_005( ruthConnection );
vetStatsBuiltins_005( dboConnection );
vetStatsBuiltins_005( ruthConnection );
dropSchema_005( ruthConnection );
}
private void vetStatsBuiltins_005( Connection conn )
throws Exception
{
vetBuiltinAgg_005
(
conn,
"var_pop",
new String[][] { { "8.079999999999991" } },
new String[][] { { "8.0" } }
);
vetBuiltinAgg_005
(
conn,
"var_samp",
new String[][] { { "10.099999999999994" } },
new String[][] { { "10.0" } }
);
vetBuiltinAgg_005
(
conn,
"stddev_pop",
new String[][] { { "2.8425340807103776" } },
new String[][] { { "2.8284271247461903" } }
);
vetBuiltinAgg_005
(
conn,
"stddev_samp",
new String[][] { { "3.1780497164141397" } },
new String[][] { { "3.1622776601683795" } }
);
}
private void vetBuiltinAgg_005
(
Connection conn,
String aggName,
String[][] expectedInexactResults,
String[][] expectedExactResults
)
throws Exception
{
vetBuiltinAgg_005( conn, aggName, "doubles", expectedInexactResults );
vetBuiltinAgg_005( conn, aggName, "floats", expectedInexactResults );
vetBuiltinAgg_005( conn, aggName, "bigints", expectedExactResults );
vetBuiltinAgg_005( conn, aggName, "ints", expectedExactResults );
vetBuiltinAgg_005( conn, aggName, "smallints", expectedExactResults );
vetBuiltinNegative_005( conn, aggName );
}
private void vetBuiltinAgg_005
(
Connection conn,
String aggName,
String tableName,
String[][] expectedResults
)
throws Exception
{
assertResults
(
conn,
"select " + aggName + "( a ) from ruth." + tableName,
expectedResults,
false
);
}
private void vetBuiltinNegative_005
(
Connection conn,
String aggName
)
throws Exception
{
// varchar can not be implicitly cast to double
expectCompilationError( conn, IMPLICIT_CAST_ERROR,
"select " + aggName + "( a ) from ruth.varchars" );
// cannot schema-qualify a builtin aggregate name
expectCompilationError( conn, MISSING_ROUTINE,
"select sys." + aggName + "( a ) from ruth.doubles" );
// cannot use ALL or DISTINCT with a builtin aggregate
expectCompilationError( conn, PARSE_ERROR,
"select " + aggName + "( all a ) from ruth.doubles" );
expectCompilationError( conn, BAD_DISTINCT,
"select " + aggName + "( distinct a ) from ruth.doubles" );
}
private void createSchema_005( Connection ruthConnection )
throws Exception
{
goodStatement
(
ruthConnection,
"create table doubles( a double )"
);
goodStatement
(
ruthConnection,
"insert into doubles values ( 1.2 ), ( 3.4 ), (5.6), (7.8), (9.0)"
);
goodStatement
(
ruthConnection,
"create table floats( a double )"
);
goodStatement
(
ruthConnection,
"insert into floats values ( 1.2 ), ( 3.4 ), (5.6), (7.8), (9.0)"
);
goodStatement
(
ruthConnection,
"create table bigints( a bigint )"
);
goodStatement
(
ruthConnection,
"insert into bigints values ( 1 ), ( 3 ), (5), (7), (9)"
);
goodStatement
(
ruthConnection,
"create table ints( a bigint )"
);
goodStatement
(
ruthConnection,
"insert into ints values ( 1 ), ( 3 ), (5), (7), (9)"
);
goodStatement
(
ruthConnection,
"create table smallints( a bigint )"
);
goodStatement
(
ruthConnection,
"insert into smallints values ( 1 ), ( 3 ), (5), (7), (9)"
);
goodStatement
(
ruthConnection,
"create table varchars( a varchar( 10 ) )"
);
goodStatement
(
ruthConnection,
"insert into varchars values ( '1' ), ( '3' ), ( '5' ), ( '7' ), ( '9' )"
);
}
private void dropSchema_005( Connection ruthConnection )
throws Exception
{
// drop schema
goodStatement
(
ruthConnection,
"drop table varchars"
);
goodStatement
(
ruthConnection,
"drop table smallints"
);
goodStatement
(
ruthConnection,
"drop table ints"
);
goodStatement
(
ruthConnection,
"drop table bigints"
);
goodStatement
(
ruthConnection,
"drop table floats"
);
goodStatement
(
ruthConnection,
"drop table doubles"
);
}
}
|