1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-07 17:27:16 +02:00

[ticket/12413] Disabled unapproved and solftdeleted tests

PHPBB3-12413
This commit is contained in:
Nicofuma
2014-04-30 00:14:28 +02:00
parent 21e2f5c517
commit dcadc04b18

View File

@@ -482,6 +482,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_create_softdelete_post() public function test_create_softdelete_post()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->login(); $this->login();
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
@@ -505,6 +506,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_softdelete_post() public function test_softdelete_post()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->login(); $this->login();
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
@@ -532,6 +534,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_softdeleted_post_admin() public function test_feeds_softdeleted_post_admin()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1', 'Feeds #1',
@@ -574,6 +577,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_softdeleted_post_guest() public function test_feeds_softdeleted_post_guest()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1', 'Feeds #1',
@@ -607,6 +611,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_softdelete_topic() public function test_softdelete_topic()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->login(); $this->login();
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
@@ -636,6 +641,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_softdeleted_topic_admin() public function test_feeds_softdeleted_topic_admin()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1', 'Feeds #1',
@@ -705,6 +711,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_softdeleted_topic_guest() public function test_feeds_softdeleted_topic_guest()
{ {
$this->markTestIncomplete('Softdeleted posts/topics are not marked in feeds yet, see PHPBB3-12460');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1', 'Feeds #1',
@@ -753,6 +760,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_create_unapproved_post() public function test_create_unapproved_post()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -774,6 +782,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_unapproved_post_admin() public function test_feeds_unapproved_post_admin()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -816,6 +825,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_unapproved_post_disapprove_user() public function test_feeds_unapproved_post_disapprove_user()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -849,6 +859,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_create_unapproved_topic() public function test_create_unapproved_topic()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -868,6 +879,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_unapproved_topic_admin() public function test_feeds_unapproved_topic_admin()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -934,6 +946,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
public function test_feeds_unapproved_topic_disapprove_user() public function test_feeds_unapproved_topic_disapprove_user()
{ {
$this->markTestIncomplete('Unapproved posts/topics are not marked in feeds yet, see PHPBB3-12459');
$this->load_ids(array( $this->load_ids(array(
'forums' => array( 'forums' => array(
'Feeds #1.1', 'Feeds #1.1',
@@ -1015,7 +1028,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
$this->assert_feeds(array( $this->assert_feeds(array(
'f' => array( 'f' => array(
array( array(
'nb_entries' => 4, 'nb_entries' => 2,
'id' => $this->data['forums']['Feeds #1'], 'id' => $this->data['forums']['Feeds #1'],
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
@@ -1043,7 +1056,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'overall' => array( 'overall' => array(
array( array(
'nb_entries' => 11, 'nb_entries' => 6,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1056,7 +1069,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics' => array( 'topics' => array(
array( array(
'nb_entries' => 8, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1069,7 +1082,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics_new' => array( 'topics_new' => array(
array( array(
'nb_entries' => 8, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1082,7 +1095,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics_active' => array( 'topics_active' => array(
array( array(
'nb_entries' => 8, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1142,7 +1155,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'overall' => array( 'overall' => array(
array( array(
'nb_entries' => 7, 'nb_entries' => 6,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1155,7 +1168,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics' => array( 'topics' => array(
array( array(
'nb_entries' => 6, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1168,7 +1181,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics_new' => array( 'topics_new' => array(
array( array(
'nb_entries' => 6, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch
@@ -1181,7 +1194,7 @@ class phpbb_functional_feed_test extends phpbb_functional_test_case
), ),
'topics_active' => array( 'topics_active' => array(
array( array(
'nb_entries' => 6, 'nb_entries' => 5,
'attachments' => array( 'attachments' => array(
1 => array( // First entry 1 => array( // First entry
array( // First attachment to fetch array( // First attachment to fetch