1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 03:40:37 +02:00

Extra check on hasLanguage() and in backup()

This commit is contained in:
Cameron
2019-02-12 12:28:43 -08:00
parent 8bb6c442a2
commit c9d9c71835

View File

@@ -172,10 +172,16 @@
e107::getConfig()->set('multilanguage',true)->save();
$this->db->setLanguage('Spanish');
$this->db->resetTableList(); // reload the table list so it includes the copied table above.
$result = $this->db->db_IsLang('news', false);
$this->assertEquals('lan_spanish_news', $result);
$result = $this->db->db_IsLang('news', true);
$expected = array ('spanish' => array ('e107_news' => 'e107_lan_spanish_news', ),);
$this->assertEquals($expected, $result);
$this->db->setLanguage('English');
$this->db->dropTable('lan_spanish_news');
@@ -832,6 +838,8 @@
$compressedSize = filesize($result);
$this->assertLessThan($uncompressedSize, $compressedSize);
$result = $this->db->backup('missing_table', null, $opts);
$this->assertFalse($result);
}