public function testGivenAllParameters() {
     $_GET['p'] = '1001';
     $_GET['n'] = 'twitter';
     $controller = new ThinkUpEmbedController(true);
     $results = $controller->go();
     $v_mgr = $controller->getViewManager();
     $config = Config::getInstance();
     $this->assertPattern('/ThinkUp1001 = new function()/', $results, "Javascript embed code returned");
 }
Example #2
0
/**
 *
 * ThinkUp/webapp/plugins/embedthread/thinkup_embed.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("..");
chdir("..");
chdir("..");
require_once 'init.php';
$controller = new ThinkUpEmbedController();
echo $controller->go();
 public function testGivenAllParametersWithSSL()
 {
     $_SERVER['SERVER_NAME'] = 'mytestthinkup';
     $_SERVER['HTTPS'] = true;
     $_GET['p'] = '1001';
     $_GET['n'] = 'twitter';
     $controller = new ThinkUpEmbedController(true);
     $results = $controller->go();
     $v_mgr = $controller->getViewManager();
     $this->assertPattern('/ThinkUp1001 = new function()/', $results, "Javascript embed code returned");
     $this->debug($results);
     $expected_pattern = '/var BASE_URL = \'https:\\/\\/mytestthinkup/';
     $this->assertPattern($expected_pattern, $results);
     $this->assertPattern('/thinkup_embed_1001/', $results, "Unique div name returned");
 }