From: Coleman Watts Date: Sun, 19 Jan 2014 06:09:50 +0000 (-0800) Subject: This file appears to be unused X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=5760d4c920f3d858fabcaa5d551d7f3703b1aba4;p=civicrm-core.git This file appears to be unused --- diff --git a/tests/phpunit/CiviTest/CiviTestCase.php b/tests/phpunit/CiviTest/CiviTestCase.php deleted file mode 100644 index e03c6b88f4..0000000000 --- a/tests/phpunit/CiviTest/CiviTestCase.php +++ /dev/null @@ -1,175 +0,0 @@ -civiGetURL($url, $abort); - } - - function civiGetURL($url, $abort = FALSE) { - $html = $this->_browser->get($url); - - if ($this->drupalCheckAuth(TRUE)) { - $html .= $this->drupalCheckAuth(); - } - - $this->_content = $this->_browser->getContent(); - - if ($abort) { - echo $html; - exit(); - } - - return $html; - } - - function getUrlsByLabel($label, $fuzzy = FALSE) { - if (!$fuzzy) { - return $this->_browser->_page->getUrlsByLabel($label); - } - - $matches = array(); - foreach ($this->_browser->_page->_links as $link) { - $text = $link->getText(); - if ($text == $label || - strpos($text, $label) !== FALSE - ) { - $matches[] = $this->_browser->_page->_getUrlFromLink($link); - } - } - return $matches; - } - - function isCiviURL($url, $ignoreVariations = TRUE) { - static $config = NULL; - if (!$config) { - $config = CRM_Core_Config::singleton(); - } - - if (strpos($url, $config->userFrameworkBaseURL . 'civicrm/') === FALSE) { - return FALSE; - } - - // ignore all urls with snippet, force, crmSID - if ($ignoreVariations && - (strpos($url, 'snippet=') || - strpos($url, 'force=') || - strpos($url, 'crmSID=') - ) - ) { - return FALSE; - } - - return TRUE; - } - - function getUrlsByToken($token, $path = NULL) { - $matches = array(); - foreach ($this->_browser->_page->_links as $link) { - $text = $link->getText(); - $url = $this->_browser->_page->_getUrlFromLink($link)->asString(); - if ($this->isCiviURL($url) && - (strpos($url, $token) !== FALSE) - ) { - if (!$path || - strpos($url, $path) !== FALSE - ) { - $matches[$text] = $url; - } - } - } - return $matches; - } - - function clickLink($label, $index = 0, $fuzzy = FALSE) { - if (!$fuzzy) { - return parent::clickLink($label, $index); - } - - $url_before = str_replace('%', '%%', $this->getUrl()); - $urls = $this->getUrlsByLabel($label, TRUE); - if (count($urls) < $index + 1) { - $url_target = 'URL NOT FOUND!'; - } - else { - $url_target = str_replace('%', '%%', $urls[$index]->asString()); - } - - $this->_browser->_load($urls[$index], new SimpleGetEncoding()); - $ret = $this->_failOnError($this->_browser->getContent()); - - $this->assertTrue($ret, ' [browser] clicked link ' . t($label) . " ($url_target) from $url_before"); - - return $ret; - } - - function allPermissions() { - return array( - 1 => 'add contacts', - 2 => 'view all contacts', - 3 => 'edit all contacts', - 4 => 'import contacts', - 5 => 'edit groups', - 6 => 'administer CiviCRM', - 7 => 'access uploaded files', - 8 => 'profile listings and forms', - 9 => 'access all custom data', - 10 => 'view all activities', - 11 => 'access CiviCRM', - 12 => 'access Contact Dashboard', - ); - } - - function errorPage(&$ret, &$url) { - // check if there is a civicrm error or warning message on the page - // at a later stage, we should also check for CMS based errors - $this->assertTrue($ret, ts(' [browser] GET %1"', array('%1' => $url))); - - $this->assertNoText('Sorry. A non-recoverable error has occurred', '[browser] fatal error page?'); - $this->assertNoText('The requested page could not be found', '[browser] page not found?'); - $this->assertNoText('You are not authorized to access this page', '[browser] permission denied?'); - - return; - } -} -