3 * Copyright 2012, Roland Mas
5 * This file is part of FusionForge.
7 * FusionForge is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2 of the License,
10 * or (at your option) any later version.
12 * FusionForge is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 require_once dirname(dirname(__FILE__)).'/Testing/SeleniumGforge.php';
24 class PluginMoinMoin extends FForge_SeleniumTestCase
26 protected $alreadyActive = 0;
28 function testMoinMoin()
30 $this->activatePlugin('moinmoin');
32 $this->populateStandardTemplate('empty');
35 $this->clickAndWait("link=Admin");
36 $this->clickAndWait("link=Tools");
37 $this->click("use_moinmoin");
38 $this->clickAndWait("submit");
39 $this->assertTrue($this->isTextPresent("Project information updated"));
41 $this->cron_for_plugin("create-wikis.php", "moinmoin");
44 $this->gotoProject('ProjectA');
45 $this->click("link=MoinMoinWiki");
46 sleep(10); // MoinMoinWiki has no <h1> element, so no waitForPageToLoad()
47 $this->assertFalse($this->isTextPresent("ConfigurationError"));
48 $this->assertFalse($this->isTextPresent("Wiki not created yet"));
50 $this->click("link=Create New Page");
53 $this->assertFalse($this->isTextPresent("You are not allowed"));
54 $this->type("//textarea[@id='editor-textarea']", "Pardon me, boy
55 Is that the Chattanooga choo choo?");
56 $this->click("//input[@name='button_save']");
59 $this->gotoProject('ProjectA');
60 $this->click("link=MoinMoinWiki");
62 $this->assertTrue($this->isTextPresent("Chattanooga"));
68 // c-file-style: "bsd"