From af474609e3e80db9ba1d16b9ad2eae89775f51c8 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 20 Apr 2008 18:24:07 +0000 Subject: - Added a test framework to Drupal along with a first batch of tests for Drupal core! This is an important milestone for the project so enable the module and check it out ... :) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to Rok Žlender, Károly Négyesi, Jimmy Berry, Kevin Bridges, Charlie Gordon, Douglas Hubler, Miglius Alaburda, Andy Kirkham, Dimitri13, Kieran Lal, Moshe Weitzman, and the many other people that helped with testing over the past years and that drove this home. It all works but it is still rough around the edges (i.e. documentation is still being written, the coding style is not 100% yet, a number of tests still fail) but we spent the entire weekend working on it in Paris and made a ton of progress. The best way to help and to get up to speed, is to start writing and contributing some tests ... as well as fixing some of the failures. For those willing to help with improving the test framework, here are some next steps and issues to resolve: - How to best approach unit tests and mock functions? - How to test drupal_mail() and drupal_http_request()? - How to improve the admin UI so we have a nice progress bar? - How best to do code coverage? - See http://g.d.o/node/10099 for more ... --- modules/blogapi/blogapi.test | 159 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 159 insertions(+) create mode 100644 modules/blogapi/blogapi.test (limited to 'modules/blogapi') diff --git a/modules/blogapi/blogapi.test b/modules/blogapi/blogapi.test new file mode 100644 index 000000000..ea6accf0b --- /dev/null +++ b/modules/blogapi/blogapi.test @@ -0,0 +1,159 @@ + t('Blog API functionality'), + 'description' => t('Create, edit, and delete post; upload file; and set/get categories.'), + 'group' => t('Blog API'), + ); + } + + /** + * Implementation of setUp(). + */ + function setUp() { + parent::setUp('blog', 'blogapi', 'taxonomy'); + } + + /** + * Create, edit, and delete post; upload file; and set/get categories. + */ + function testBlogAPI() { + // Create admin user and taxononmy for later use. + $admin_user = $this->drupalCreateUser(array('administer taxonomy')); + $this->drupalLogin($admin_user); + $vid = $this->addVocabulary('simpletest_vocab'); + $term = $this->addTerm($vid, 'simpletest_term1'); + $this->drupalLogout(); + + // Create user. + $web_user = $this->drupalCreateUser(array('create blog content', 'delete own blog content', 'edit own blog content', 'administer content with blog api')); + $this->drupalLogin($web_user); + + // Init common variables. + $local = url('xmlrpc.php', array('absolute' => TRUE)); + $appid = 'simpletest'; + + // Get user's blog. + $result = xmlrpc($local, 'blogger.getUsersBlogs', $appid, $web_user->name, $web_user->pass_raw); + $this->assertTrue($result, t('Request for user\'s blogs returned correctly.')); + + if ($result !== FALSE) { + if ($this->assertTrue(array_key_exists('blogid', $result[0]), t('Blog found.'))) { + $blog_id = $result[0]['blogid']; + } + } + + // Create post. + $content = $this->randomName(32); + $result = xmlrpc($local, 'blogger.newPost', $appid, $blog_id, $web_user->name, $web_user->pass_raw, $content, TRUE); + $this->assertTrue($result, t('Post created.')); + + $nid = $result; + + // Check recent posts. + $result = xmlrpc($local, 'blogger.getRecentPosts', $appid, $blog_id, $web_user->name, $web_user->pass_raw, 5); + $this->assertTrue($result, t('Recent post list retreived.')); + + if ($result !== FALSE && array_key_exists('title', $result[0])) { + $this->assertEqual($content, $result[0]['title'], t('Post found.')); + } + else + $this->assertTrue(false, 'Post found.'); + + // Edit post. + $content_new = $this->randomName(10); + $result = xmlrpc($local, 'blogger.editPost', $appid, $nid, $web_user->name, $web_user->pass_raw, $content_new, TRUE); + $this->assertTrue($result, t('Post successfully modified.')); + + // Upload file. + $file = current($this->drupalGetTestFiles('text')); + $file_contents = file_get_contents($file->filename); + $file = array(); + $file['name'] = $this->randomName() .'.txt'; + $file['type'] = 'text'; + $file['bits'] = xmlrpc_base64($file_contents); + $result = xmlrpc($local, 'metaWeblog.newMediaObject', $blog_id, $web_user->name, $web_user->pass_raw, $file); + $this->assertTrue($result, t('File successfully uploaded.')); + + $url = (array_key_exists('url', $result) ? $result['url'] : ''); + + // Check uploaded file. + $this->drupalGet($url); + $this->assertEqual($this->drupalGetContent(), $file_contents, t('Uploaded contents verified.')); + + // Set post categories. + $categories = array(array('categoryId' => $term)); + $result = xmlrpc($local, 'mt.setPostCategories', $nid, $web_user->name, $web_user->pass_raw, $categories); + $this->assertTrue($result, t('Post categories set.')); + + // Get post categories. + $result = xmlrpc($local, 'mt.getPostCategories', $nid, $web_user->name, $web_user->pass_raw); + $this->assertTrue($result, t('Category list successfully retreived.')); + + if ($result !== FALSE && array_key_exists('categoryId', $result[0])) { + $this->assertEqual($term, $result[0]['categoryId'], t('Category list verified.')); + } + + // Delete post. + $result = xmlrpc($local, 'blogger.deletePost', $appid, $nid, $web_user->name, $web_user->pass_raw, TRUE); + $this->assertTrue($result, t('Post successfully deleted.')); + } + + /** + * Add taxonomy vocabulary. + * + * @param string $vocab Vocabulary name. + * @return interger Vocab id. + */ + function addVocabulary($vocab) { + $edit = array(); + $edit['name'] = $vocab; + $edit['nodes[blog]'] = TRUE; + $this->drupalPost('admin/content/taxonomy/add/vocabulary', $edit, t('Save')); + $this->assertRaw(t('Created new vocabulary %vocab.', array('%vocab' => $edit['name'])), t('Taxonomy vocabulary added.')); + + $vocab_arr = taxonomy_get_vocabularies(); + $vid = NULL; + foreach ($vocab_arr as $vocab_item) { + if ($vocab_item->name == $vocab) { + $vid = $vocab_item->vid; + break; + } + } + + $this->assertNotNull($vid, t('Vocabulary found in database.')); + return $vid; + } + + /** + * Add a taxonomy term to vocabulary. + * + * @param integer $vid Vocabulary id. + * @param string $term Term name. + * @return interger Term id. + */ + function addTerm($vid, $term) { + $edit = array(); + $edit['name'] = $term; + $this->drupalPost('admin/content/taxonomy/'. $vid .'/add/term', $edit, t('Save')); + $this->assertRaw(t('Created new term %term.', array('%term' => $edit['name'])), t('Taxonomy term added.')); + + $tree = taxonomy_get_tree($vid); + $tid = NULL; + foreach ($tree as $tree_term) { + if ($tree_term->name == $term) { + $tid = $tree_term->tid; + break; + } + } + + $this->assertNotNull($tid, t('Term found in database.')); + return $tid; + } +} -- cgit v1.2.3