ChadoComplianceTest.php 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <?php
  2. namespace Tests\tripal_chado\api;
  3. use StatonLab\TripalTestSuite\DBTransaction;
  4. use StatonLab\TripalTestSuite\TripalTestCase;
  5. module_load_include('inc', 'tripal_chado', 'api/ChadoSchema');
  6. /**
  7. * Tests the current Chado Database is compliant with the schema definition used by Tripal
  8. */
  9. class ChadoComplianceTest extends TripalTestCase {
  10. // Uncomment to auto start and rollback db transactions per test method.
  11. use DBTransaction;
  12. /**
  13. * DataProvider, a list of all chado tables.
  14. *
  15. * @return array
  16. */
  17. public function chadoTableProvider() {
  18. $chado_schema = new \ChadoSchema();
  19. $version = $chado_schema->getVersion();
  20. $dataset = [];
  21. foreach ($chado_schema->getTableNames() as $table_name) {
  22. $dataset[] = [$version, $table_name];
  23. }
  24. return $dataset;
  25. }
  26. /**
  27. * Tests Compliance for a given table.
  28. *
  29. * The following is tested:
  30. * 1. The table exists in the correct schema.
  31. * 2. It has all the fields we expect.
  32. * 3. Each field is the type we expect.
  33. * 4. It has all the constraints we expect.
  34. * 5. Each constraint consists of the columns we expect.
  35. *
  36. * @dataProvider chadoTableProvider
  37. *
  38. * @group api
  39. * @group chado
  40. * @group chado-compliance
  41. */
  42. public function testTableCompliance($schema_version, $table_name) {
  43. // Create the ChadoSchema class to aid in testing.
  44. $chado_schema = new \ChadoSchema();
  45. $version = $chado_schema->getVersion();
  46. // Check #1: The table exists in the correct schema.
  47. $this->assertTrue(
  48. $chado_schema->checkTableExists($table_name),
  49. t('"!table_name" should exist in the "!chado" schema v!version.',
  50. array('!table_name' => $table_name, '!chado' => $schema_name, '!version' => $version))
  51. );
  52. // Retrieve the schema for this table.
  53. $table_schema = $chado_schema->getTableSchema($table_name);
  54. // For each column in this table...
  55. foreach ($table_schema['fields'] as $column_name => $column_details) {
  56. // Check #2: The given field exists in the table.
  57. $this->assertTrue(
  58. $chado_schema->checkColumnExists($table_name, $column_name),
  59. t('The column "!column" must exist in "!table" for chado v!version.',
  60. array('!column' => $column_name, '!table' => $table_name, '!version' => $version))
  61. );
  62. // Check #3: The field is the type we expect.
  63. $this->assertTrue(
  64. $chado_schema->checkColumnType($table_name, $column_name, $column_details['type']),
  65. t('The column "!table.!column" must be of type "!type" for chado v!version.',
  66. array('!column' => $column_name, '!table' => $table_name,
  67. '!version' => $version, '!type' => $column_details['type']))
  68. );
  69. }
  70. // There are three types of constraints:
  71. // primary key, unique keys, and foreign keys.
  72. //.......................................
  73. // For the primary key:
  74. // Check #4: The constraint exists.
  75. $pkey_column = $table_schema['primary key'][0];
  76. $this->assertTrue(
  77. $chado_schema->checkPrimaryKey($table_name, $pkey_column),
  78. t('The column "!table.!column" must have an associated sequence attached for chado v!version.',
  79. array('!column' => $pkey_column, '!table' => $table_name, '!version' => $version))
  80. );
  81. // For each unique key:
  82. foreach ($table_schema['unique keys'] as $constraint_name => $columns) {
  83. // @debug print "Check '$constraint_name' for '$table_name': ".implode(', ', $columns).".\n";
  84. // Check #4: The constraint exists.
  85. $this->assertTrue(
  86. $chado_schema->checkConstraintExists($table_name, $constraint_name, 'UNIQUE'),
  87. t('The unique constraint "!name" for "!table" must exist for chado v!version.',
  88. array('!name' => $constraint_name, '!table' => $table_name, '!version' => $version))
  89. );
  90. // Check #5: The constraint consists of the columns we expect.
  91. // @todo
  92. }
  93. // For each foreign key:
  94. foreach ($table_schema['foreign keys'] as $fk_table => $details) {
  95. foreach ($details['columns'] as $base_column => $fk_column) {
  96. // @debug print "Check '$table_name.$base_column => $fk_table.$fk_column ' foreign key.";
  97. // Check #4: The constraint exists.
  98. $this->assertTrue(
  99. $chado_schema->checkFKConstraintExists($table_name, $base_column, 'FOREIGN KEY'),
  100. t('The foreign key constraint "!name" for "!table.!column" must exist for chado v!version.',
  101. array('!name' => $constraint_name, '!table' => $table_name,
  102. '!column' => $column_name, '!version' => $version))
  103. );
  104. // Check #5: The constraint consists of the columns we expect.
  105. // @todo
  106. }
  107. }
  108. }
  109. }