Blame view

sources/tests/lib/db/mdb2schemareader.php 3.44 KB
f7d878ff1   kload   [enh] Update to 7...
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
  <?php
  
  /**
   * Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  namespace Test\DB;
  
  use Doctrine\DBAL\Platforms\MySqlPlatform;
  
  class MDB2SchemaReader extends \PHPUnit_Framework_TestCase {
  	/**
  	 * @var \OC\DB\MDB2SchemaReader $reader
  	 */
  	protected $reader;
  
  	/**
  	 * @return \OC\Config
  	 */
  	protected function getConfig() {
  		$config = $this->getMockBuilder('\OC\Config')
  			->disableOriginalConstructor()
  			->getMock();
  		$config->expects($this->any())
  			->method('getValue')
  			->will($this->returnValueMap(array(
  				array('dbname', 'owncloud', 'testDB'),
  				array('dbtableprefix', 'oc_', 'test_')
  			)));
  		return $config;
  	}
  
  	public function testRead() {
  		$reader = new \OC\DB\MDB2SchemaReader($this->getConfig(), new MySqlPlatform());
  		$schema = $reader->loadSchemaFromFile(__DIR__ . '/testschema.xml');
  		$this->assertCount(1, $schema->getTables());
  
  		$table = $schema->getTable('test_table');
  		$this->assertCount(8, $table->getColumns());
  
  		$this->assertEquals(4, $table->getColumn('integerfield')->getLength());
  		$this->assertTrue($table->getColumn('integerfield')->getAutoincrement());
  		$this->assertNull($table->getColumn('integerfield')->getDefault());
  		$this->assertTrue($table->getColumn('integerfield')->getNotnull());
  		$this->assertInstanceOf('Doctrine\DBAL\Types\IntegerType', $table->getColumn('integerfield')->getType());
  
  		$this->assertSame(10, $table->getColumn('integerfield_default')->getDefault());
  
  		$this->assertEquals(32, $table->getColumn('textfield')->getLength());
  		$this->assertFalse($table->getColumn('textfield')->getAutoincrement());
  		$this->assertSame('foo', $table->getColumn('textfield')->getDefault());
  		$this->assertTrue($table->getColumn('textfield')->getNotnull());
  		$this->assertInstanceOf('Doctrine\DBAL\Types\StringType', $table->getColumn('textfield')->getType());
  
  		$this->assertNull($table->getColumn('clobfield')->getLength());
  		$this->assertFalse($table->getColumn('clobfield')->getAutoincrement());
  		$this->assertNull($table->getColumn('clobfield')->getDefault());
  		$this->assertTrue($table->getColumn('clobfield')->getNotnull());
  		$this->assertInstanceOf('Doctrine\DBAL\Types\TextType', $table->getColumn('clobfield')->getType());
  
  		$this->assertNull($table->getColumn('booleanfield')->getLength());
  		$this->assertFalse($table->getColumn('booleanfield')->getAutoincrement());
  		$this->assertNull($table->getColumn('booleanfield')->getDefault());
  		$this->assertInstanceOf('Doctrine\DBAL\Types\BooleanType', $table->getColumn('booleanfield')->getType());
  
  		$this->assertTrue($table->getColumn('booleanfield_true')->getDefault());
  		$this->assertFalse($table->getColumn('booleanfield_false')->getDefault());
  
  		$this->assertEquals(12, $table->getColumn('decimalfield_precision_scale')->getPrecision());
  		$this->assertEquals(2, $table->getColumn('decimalfield_precision_scale')->getScale());
  
  		$this->assertCount(2, $table->getIndexes());
  		$this->assertEquals(array('integerfield'), $table->getIndex('primary')->getUnquotedColumns());
  		$this->assertTrue($table->getIndex('primary')->isPrimary());
  		$this->assertTrue($table->getIndex('primary')->isUnique());
  		$this->assertEquals(array('booleanfield'), $table->getIndex('index_boolean')->getUnquotedColumns());
  		$this->assertFalse($table->getIndex('index_boolean')->isPrimary());
  		$this->assertFalse($table->getIndex('index_boolean')->isUnique());
  	}
  }