public function testHint()
 {
     $builder = $this->buildData();
     $this->simulateLogin('*****@*****.**', true, true);
     $controller = new UpdateNowController(true);
     $result = $controller->go();
     $v_mgr = $controller->getViewManager();
     $this->assertEqual($v_mgr->getTemplateDataItem('info_msg'), "<b>Hint</b>: You can set up ThinkUp to capture your data automatically. Visit Settings &rarr; " . "Account to find out how.");
 }
 public function testLoadProperRSSUrlWithPlusSignInEmailAddress()
 {
     $builder = $this->buildData();
     $this->simulateLogin('*****@*****.**', true, true);
     $controller = new UpdateNowController(true);
     $this->assertTrue(isset($controller));
     $result = $controller->control();
     $this->debug($result);
     $this->assertPattern('/rss.php\\?un=me\\%2Bcheckurlencoding%40example.com&as=c9089f3c9adaf0186f6ffb1ee8d6501c/', $result);
 }
Beispiel #3
0
/**
 *
 * ThinkUp/webapp/crawler/updatenow.php
 *
 * Copyright (c) 2009-2013 Gina Trapani
 *
 * LICENSE:
 *
 * This file is part of ThinkUp (http://thinkup.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-2013 Gina Trapani
 */
chdir("..");
require_once 'init.php';
$controller = new UpdateNowController();
echo $controller->go();