From c3477ee61325016d0ac09c0cdaf95649cae54393 Mon Sep 17 00:00:00 2001 From: Silvio Date: Fri, 11 Feb 2011 17:28:31 -0200 Subject: Adding test case --- node_truncate.test | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 node_truncate.test (limited to 'node_truncate.test') diff --git a/node_truncate.test b/node_truncate.test new file mode 100644 index 0000000..fe242d9 --- /dev/null +++ b/node_truncate.test @@ -0,0 +1,62 @@ + 'Node truncate functionality', + 'description' => 'Verify node truncate batch.', + 'group' => 'Node truncate', + ); + } + + /** + * Enable modules and create user with specific permissions. + */ + function setUp() { + parent::setUp('node_truncate'); + // Create user. + $this->web_user = $this->drupalCreateUser(); + } + + /** + * Login user, create 30 nodes and test batch. + */ + function testNodeTruncateBasic() { + // Login the admin user. + $user = $this->drupalCreateUser(array('administer nodes')); + $this->drupalLogin($user); + + // Content type settings. + $settings = array( + 'type' => 'node_truncate', + ); + + // Create a content type. + $content_type = $this->drupalCreateContentType($settings); + $this->assertEqual($content_type->type, 'node_truncate'); + + // Create 30 nodes. + for ($count = 0; $count < 30; $count++) { + $node = $this->drupalCreateNode($settings); + } + + // Launch Batch. + $result = $this->drupalPost('admin/config/content/node_truncate', + array('node_types[node_truncate]' => TRUE), + t('Truncate')); + + // Check that 30 operations were performed. + $this->assertText('30 old posts processed.'); + } +} -- cgit v1.2.3