123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- <?php
- namespace Tests\tripal_chado\api;
- use StatonLab\TripalTestSuite\DBTransaction;
- use StatonLab\TripalTestSuite\TripalTestCase;
- use Faker\Factory;
- module_load_include('inc', 'tripal_chado', 'api/ChadoSchema');
- /**
- * Tests the ChadoSchema class.
- *
- * @todo test "Check" functions in the ChadoSchema class.
- */
- class ChadoSchemaTest extends TripalTestCase {
- use DBTransaction;
- /**
- * Tests that the class can be initiated with or without a record specified
- *
- * @group api
- * @group chado
- * @group chado-schema
- */
- public function testInitClass() {
- // Test with no parameters.
- $chado_schema = new \ChadoSchema();
- $this->assertNotNull($chado_schema);
- // Test with version.
- $chado_schema = new \ChadoSchema('1.3');
- $this->assertNotNull($chado_schema);
- }
- /**
- * Tests the ChadoSchema->getVersion() method.
- *
- * @group api
- * @group chado
- * @group chado-schema
- */
- public function testGetVersion() {
- // Generate a fake version.
- $faker = Factory::create();
- $version = $faker->randomFloat(2, 1, 5);
- // Check version can be retrieved when we set it.
- $chado_schema = new \ChadoSchema($version);
- $retrieved_version = $chado_schema->getVersion();
- $this->assertEquals(
- $version,
- $retrieved_version,
- t('The version retrieved via ChadoSchema->getVersion, "!ret", should equal that set, "!set"',
- array('!ret' => $retrieved_version, '!set' => $version))
- );
- // @todo Check version can be retrieved when it's looked up?
- }
- /**
- * Tests the ChadoSchema->getSchemaName() method.
- *
- * @group api
- * @group chado
- * @group chado-schema
- */
- public function testGetSchemaName() {
- // Generate a fake version.
- $faker = Factory::create();
- $version = $faker->randomFloat(2, 1, 5);
- $schema_name = $faker->word();
- // Check the schema name can be retrieved when we set it.
- $chado_schema = new \ChadoSchema($version, $schema_name);
- $retrieved_schema = $chado_schema->getSchemaName();
- $this->assertEquals(
- $schema_name,
- $retrieved_schema,
- t('The schema name retrieved via ChadoSchema->getSchemaName, "!ret", should equal that set, "!set"',
- array('!ret' => $retrieved_schema, '!set' => $schema_name))
- );
- // @todo Check schema name can be retrieved when it's looked up?
- }
- /**
- * Tests ChadoSchema->getTableNames() method.
- *
- * @dataProvider knownTableProvider
- *
- * @group api
- * @group chado
- * @group chado-schema
- */
- public function testGetTableNames($version, $known_tables) {
- // Check: Known tables for a given version are returned.
- $chado_schema = new \ChadoSchema($version);
- $returned_tables = $chado_schema->getTableNames();
- foreach ($known_tables as $table_name) {
- $this->assertArrayHasKey(
- $table_name,
- $returned_tables,
- t('The table, "!known", should exist in the returned tables list for version !version.',
- array(':known' => $table_name, ':version' => $version))
- );
- }
- }
- /**
- * Tests ChadoSchema->getTableSchema() method.
- *
- * @dataProvider chadoTableProvider
- *
- * @group api
- * @group chado
- * @group chado-schema
- */
- public function testGetTableSchema($version, $table_name) {
- // Check: a schema is returned that matches what we expect.
- $chado_schema = new \ChadoSchema($version);
- $table_schema = $chado_schema->getTableSchema($table_name);
- $this->assertNotEmpty(
- $table_schema,
- t('Returned schema for "!table" in chado v!version should not be empty.',
- array('!table' => $table_name, '!version' => $version))
- );
- $this->assertArrayHasKey(
- 'fields',
- $table_schema,
- t('The schema array for "!table" should have columns listed in an "fields" array',
- array('!table' => $table_name))
- );
- $this->assertArrayHasKey(
- 'primary key',
- $table_schema,
- t('The schema array for "!table" should have the primary key listed in an "primary key" array',
- array('!table' => $table_name))
- );
- $this->assertArrayHasKey(
- 'unique keys',
- $table_schema,
- t('The schema array for "!table" should have unique keys listed in an "unique keys" array',
- array('!table' => $table_name))
- );
- $this->assertArrayHasKey(
- 'foreign keys',
- $table_schema,
- t('The schema array for "!table" should have foreign keys listed in an "foreign keys" array',
- array('!table' => $table_name))
- );
- }
- /**
- * Data Provider: returns known tables specific to a given chado version.
- *
- * @return array
- */
- public function knownTableProvider() {
- // chado version, array of 3 tables specific to version.
- return [
- ['1.2', ['cell_line_relationship', 'cvprop', 'chadoprop']],
- ['1.3', ['analysis_cvterm', 'dbprop', 'organism_pub']],
- ];
- }
- /**
- * DataProvider, a list of all chado tables.
- *
- * @return array
- */
- public function chadoTableProvider() {
- // Provide the table list for all versions.
- $dataset = [];
- foreach (array('1.11','1.2','1.3') as $version) {
- $chado_schema = new \ChadoSchema();
- $version = $chado_schema->getVersion();
- foreach ($chado_schema->getTableNames() as $table_name) {
- $dataset[] = [$version, $table_name];
- }
- }
- return $dataset;
- }
- }
|