2010-10-19 06:53:36 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2010-10-19 06:53:36 +02:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
|
|
|
|
class FulltextSearchableTest extends SapphireTest {
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function setUp() {
|
2010-10-19 06:53:36 +02:00
|
|
|
parent::setUp();
|
2013-10-22 06:52:51 +02:00
|
|
|
|
|
|
|
FulltextSearchable::enable('File');
|
2010-10-19 06:53:36 +02:00
|
|
|
}
|
2013-10-22 06:52:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* FulltextSearchable::enable() leaves behind remains that don't get cleaned up
|
|
|
|
* properly at the end of the test. This becomes apparent when a later test tries to
|
|
|
|
* ALTER TABLE File and add fulltext indexes with the InnoDB table type.
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function tearDown() {
|
2010-10-19 06:53:36 +02:00
|
|
|
parent::tearDown();
|
2013-10-22 06:52:51 +02:00
|
|
|
|
|
|
|
File::remove_extension('FulltextSearchable');
|
|
|
|
Config::inst()->update('File', 'create_table_options', array('MySQLDatabase' => 'ENGINE=InnoDB'));
|
2010-10-19 06:53:36 +02:00
|
|
|
}
|
2013-10-22 06:52:51 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testEnable() {
|
2012-10-09 23:59:23 +02:00
|
|
|
$this->assertTrue(File::has_extension('FulltextSearchable'));
|
2010-10-19 06:53:36 +02:00
|
|
|
}
|
2013-10-22 06:52:51 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testEnableWithCustomClasses() {
|
2011-03-23 04:11:34 +01:00
|
|
|
FulltextSearchable::enable(array('File'));
|
2012-10-09 23:59:23 +02:00
|
|
|
$this->assertTrue(File::has_extension('FulltextSearchable'));
|
2010-10-19 06:53:36 +02:00
|
|
|
|
2013-10-22 06:52:51 +02:00
|
|
|
File::remove_extension('FulltextSearchable');
|
2013-03-19 12:47:30 +01:00
|
|
|
$this->assertFalse(File::has_extension('FulltextSearchable'));
|
2010-10-19 06:53:36 +02:00
|
|
|
}
|
2013-10-22 06:52:51 +02:00
|
|
|
|
2012-03-24 04:04:52 +01:00
|
|
|
}
|