CC-5725 Changing a show's repeat type removes first instance from repeating seriesCC-5726: Write database test cases for CC-5725
This commit is contained in:
parent
6b91d2daf8
commit
03bb0e1df9
|
@ -661,4 +661,69 @@ class ShowServiceDbTest extends Zend_Test_PHPUnit_DatabaseTestCase
|
||||||
$ds
|
$ds
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function testChangeRepeatTypeFromWeeklyToNoRepeat()
|
||||||
|
{
|
||||||
|
TestHelper::loginUser();
|
||||||
|
|
||||||
|
//test change repeat type from weekly to no-repeat
|
||||||
|
$data = ShowServiceData::getWeeklyRepeatNoEndNoRRData();
|
||||||
|
$showService = new Application_Service_ShowService(null, $data);
|
||||||
|
$showService->addUpdateShow($data);
|
||||||
|
|
||||||
|
$data["add_show_repeats"] = 0;
|
||||||
|
$data["add_show_id"] = 1;
|
||||||
|
$showService = new Application_Service_ShowService(null, $data, true);
|
||||||
|
$showService->addUpdateShow($data);
|
||||||
|
|
||||||
|
$ds = new Zend_Test_PHPUnit_Db_DataSet_QueryDataSet(
|
||||||
|
$this->getConnection()
|
||||||
|
);
|
||||||
|
|
||||||
|
$ds->addTable('cc_show', 'select * from cc_show');
|
||||||
|
$ds->addTable('cc_show_days', 'select * from cc_show_days');
|
||||||
|
$ds->addTable('cc_show_instances', 'select id, starts, ends, show_id, record, rebroadcast, instance_id, modified_instance from cc_show_instances');
|
||||||
|
$ds->addTable('cc_show_rebroadcast', 'select * from cc_show_rebroadcast');
|
||||||
|
$ds->addTable('cc_show_hosts', 'select * from cc_show_hosts');
|
||||||
|
|
||||||
|
$this->assertDataSetsEqual(
|
||||||
|
$this->createXmlDataSet(dirname(__FILE__)."/datasets/test_createNoRepeatNoRRShow.xml"),
|
||||||
|
$ds
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testChangeRepeatTypeFromWeeklyToBiWeekly()
|
||||||
|
{
|
||||||
|
TestHelper::loginUser();
|
||||||
|
|
||||||
|
//test change repeat type weekly to bi-weekly
|
||||||
|
$data = ShowServiceData::getWeeklyRepeatNoEndNoRRData();
|
||||||
|
$showService = new Application_Service_ShowService(null, $data);
|
||||||
|
$showService->addUpdateShow($data);
|
||||||
|
|
||||||
|
$data["add_show_id"] = 1;
|
||||||
|
$data["add_show_repeat_type"] = 1;
|
||||||
|
$showService = new Application_Service_ShowService(null, $data, true);
|
||||||
|
$showService->addUpdateShow($data);
|
||||||
|
|
||||||
|
$ds = new Zend_Test_PHPUnit_Db_DataSet_QueryDataSet(
|
||||||
|
$this->getConnection()
|
||||||
|
);
|
||||||
|
|
||||||
|
$ds->addTable('cc_show', 'select * from cc_show');
|
||||||
|
$ds->addTable('cc_show_days', 'select * from cc_show_days');
|
||||||
|
$ds->addTable('cc_show_instances', 'select id, starts, ends, show_id, record, rebroadcast, instance_id, modified_instance from cc_show_instances');
|
||||||
|
$ds->addTable('cc_show_rebroadcast', 'select * from cc_show_rebroadcast');
|
||||||
|
$ds->addTable('cc_show_hosts', 'select * from cc_show_hosts');
|
||||||
|
|
||||||
|
$this->assertDataSetsEqual(
|
||||||
|
$this->createXmlDataSet(dirname(__FILE__)."/datasets/test_weeklyToBiWeekly.xml"),
|
||||||
|
$ds
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testChangeRepeatTypeFromMonthlyWeeklyToNoRepeat()
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,107 @@
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<dataset>
|
||||||
|
<table name="cc_show">
|
||||||
|
<column>id</column>
|
||||||
|
<column>name</column>
|
||||||
|
<column>url</column>
|
||||||
|
<column>genre</column>
|
||||||
|
<column>description</column>
|
||||||
|
<column>color</column>
|
||||||
|
<column>background_color</column>
|
||||||
|
<column>live_stream_using_airtime_auth</column>
|
||||||
|
<column>live_stream_using_custom_auth</column>
|
||||||
|
<column>live_stream_user</column>
|
||||||
|
<column>live_stream_pass</column>
|
||||||
|
<column>linked</column>
|
||||||
|
<column>is_linkable</column>
|
||||||
|
<row>
|
||||||
|
<value>1</value>
|
||||||
|
<value>test show</value>
|
||||||
|
<null />
|
||||||
|
<null />
|
||||||
|
<null />
|
||||||
|
<value>ffffff</value>
|
||||||
|
<value>364492</value>
|
||||||
|
<value></value>
|
||||||
|
<value></value>
|
||||||
|
<null />
|
||||||
|
<null />
|
||||||
|
<value></value>
|
||||||
|
<value>1</value>
|
||||||
|
</row>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table name="cc_show_days">
|
||||||
|
<column>id</column>
|
||||||
|
<column>first_show</column>
|
||||||
|
<column>last_show</column>
|
||||||
|
<column>start_time</column>
|
||||||
|
<column>timezone</column>
|
||||||
|
<column>duration</column>
|
||||||
|
<column>day</column>
|
||||||
|
<column>repeat_type</column>
|
||||||
|
<column>next_pop_date</column>
|
||||||
|
<column>show_id</column>
|
||||||
|
<column>record</column>
|
||||||
|
<row>
|
||||||
|
<value>2</value>
|
||||||
|
<value>2016-01-01</value>
|
||||||
|
<null />
|
||||||
|
<value>00:00:00</value>
|
||||||
|
<value>UTC</value>
|
||||||
|
<value>01:00</value>
|
||||||
|
<value>5</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>2016-02-12</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
</row>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table name="cc_show_instances">
|
||||||
|
<column>id</column>
|
||||||
|
<column>starts</column>
|
||||||
|
<column>ends</column>
|
||||||
|
<column>show_id</column>
|
||||||
|
<column>record</column>
|
||||||
|
<column>rebroadcast</column>
|
||||||
|
<column>instance_id</column>
|
||||||
|
<column>modified_instance</column>
|
||||||
|
<row>
|
||||||
|
<value>7</value>
|
||||||
|
<value>2016-01-01 00:00:00</value>
|
||||||
|
<value>2016-01-01 01:00:00</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<null />
|
||||||
|
<value></value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>8</value>
|
||||||
|
<value>2016-01-15 00:00:00</value>
|
||||||
|
<value>2016-01-15 01:00:00</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<null />
|
||||||
|
<value></value>
|
||||||
|
</row>
|
||||||
|
<row>
|
||||||
|
<value>9</value>
|
||||||
|
<value>2016-01-29 00:00:00</value>
|
||||||
|
<value>2016-01-29 01:00:00</value>
|
||||||
|
<value>1</value>
|
||||||
|
<value>0</value>
|
||||||
|
<value>0</value>
|
||||||
|
<null />
|
||||||
|
<value></value>
|
||||||
|
</row>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table name="cc_show_rebroadcast">
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table name="cc_show_hosts">
|
||||||
|
</table>
|
||||||
|
</dataset>
|
Loading…
Reference in New Issue