コード例 #1
0
 public function testBothParamsExistentInstance()
 {
     $builder = FixtureBuilder::build('plugins', array('id' => 51, 'is_active' => 0));
     $this->simulateLogin('*****@*****.**', true);
     $_GET['pid'] = '51';
     $_GET['a'] = '1';
     $controller = new ToggleActivePluginController(true);
     $results = $controller->go();
     $this->assertEqual($results, 1);
 }
コード例 #2
0
/**
 *
 * ThinkUp/webapp/account/toggle-pluginactive.php
 *
 * Copyright (c) 2009-2012 Gina Trapani
 *
 * LICENSE:
 *
 * This file is part of ThinkUp (http://thinkupapp.com).
 *
 * ThinkUp is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
 * License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any
 * later version.
 *
 * ThinkUp is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
 * details.
 *
 * You should have received a copy of the GNU General Public License along with ThinkUp.  If not, see
 * <http://www.gnu.org/licenses/>.
 *
 *
 * @author Gina Trapani <ginatrapani[at]gmail[dot]com>
 * @license http://www.gnu.org/licenses/gpl.html
 * @copyright 2009-2012 Gina Trapani
 */
chdir("..");
require_once 'init.php';
$controller = new ToggleActivePluginController();
echo $controller->go();
コード例 #3
0
 public function testBothParamsExistentInstanceDeactivateCallback()
 {
     $webapp = Webapp::getInstance();
     $webapp->registerPlugin('twitter', "TwitterPlugin");
     //set up 2 active Twitter instances
     $instance_builder_1 = FixtureBuilder::build('instances', array('network_username' => 'julie', 'network' => 'twitter', 'crawler_last_run' => '-1d', 'is_activated' => '1', 'is_public' => '1'));
     $instance_builder_2 = FixtureBuilder::build('instances', array('network_username' => 'john', 'network' => 'twitter', 'crawler_last_run' => '-1d', 'is_activated' => '1', 'is_public' => '1'));
     $instance_dao = DAOFactory::getDAO('InstanceDAO');
     $active_instances = $instance_dao->getAllInstances("DESC", true, "twitter");
     $this->assertEqual(sizeof($active_instances), 2);
     $this->simulateLogin('*****@*****.**', true, true);
     $_GET['csrf_token'] = parent::CSRF_TOKEN;
     $_GET['pid'] = '1';
     $_GET['a'] = '0';
     $controller = new ToggleActivePluginController(true);
     $results = $controller->go();
     $this->assertEqual($results, 1);
     $this->debug($results);
     //make sure the 2 active Twitter instances got deactivated
     $active_instances = $instance_dao->getAllInstances("DESC", true, "twitter");
     $this->assertEqual(sizeof($active_instances), 0);
 }