Example #1
0
 function test_getActionExplodedNames()
 {
     $action = new Test_Piwik_Actions_getActionExplodedNames();
     $tests = array(array('params' => array('name' => 'http://example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => null), 'expected' => array('/index')), array('params' => array('name' => 'example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 1), 'expected' => array('/index')), array('params' => array('name' => 'example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 2), 'expected' => array('/index')), array('params' => array('name' => 'example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 3), 'expected' => array('/index')), array('params' => array('name' => 'example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 4), 'expected' => array('/index')), array('params' => array('name' => 'example.org/path/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 4), 'expected' => array('path', '/index')), array('params' => array('name' => 'example.org/test/path', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL, 'urlPrefix' => 1), 'expected' => array('test', '/path')), array('params' => array('name' => 'Test / Path', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL), 'expected' => array('Test', '/Path')), array('params' => array('name' => '    Test trim   ', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL), 'expected' => array('/Test trim')), array('params' => array('name' => 'Category / Subcategory', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME), 'expected' => array('Category', ' Subcategory')), array('params' => array('name' => '/path/index.php?var=test', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME), 'expected' => array('path', ' index.php?var=test')), array('params' => array('name' => 'http://example.org/path/Default.aspx#anchor', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME), 'expected' => array('path', ' Default.aspx')), array('params' => array('name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME), 'expected' => array('Page Name not defined')), array('params' => array('name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL), 'expected' => array('Page URL not defined')), array('params' => array('name' => 'http://example.org/download.zip', 'type' => Piwik_Tracker_Action::TYPE_DOWNLOAD), 'expected' => array('example.org', '/download.zip')), array('params' => array('name' => 'http://example.org/download/1/', 'type' => Piwik_Tracker_Action::TYPE_DOWNLOAD), 'expected' => array('example.org', '/download/1/')), array('params' => array('name' => 'http://example.org/link', 'type' => Piwik_Tracker_Action::TYPE_OUTLINK), 'expected' => array('example.org', '/link')), array('params' => array('name' => 'http://example.org/some/path/', 'type' => Piwik_Tracker_Action::TYPE_OUTLINK), 'expected' => array('example.org', '/some/path/')));
     foreach ($tests as $test) {
         $params = $test['params'];
         $expected = $test['expected'];
         $processed = $action->public_getActionExplodedNames($params['name'], $params['type'], isset($params['urlPrefix']) ? $params['urlPrefix'] : null);
         $this->assertEqual($processed, $expected, "Processed: " . var_export($processed, true) . " | Expected: " . var_export($expected, true));
     }
 }
	function test_getActionExplodedNames()
	{
		$userFile = PIWIK_INCLUDE_PATH . '/tests/resources/plugins/Actions/Actions.config.ini.php';

		Piwik::createConfigObject($userFile);

		$action = new Test_Piwik_Actions_getActionExplodedNames();

		$tests = array(
			array(
				'params' =>	array( 'name' => 'http://example.org/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array('index' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/path/', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array( 'path', 'index' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/test/path', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array( 'test', 'path' ),
			),
			array(
				'params' =>	array( 'name' => 'Test / Path', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array( 'Test', 'Path' ),
			),
			array(
				'params' =>	array( 'name' => '    Test trim   ', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array( 'Test trim' ),
			),
			array(
				'params' =>	array( 'name' => 'Category / Subcategory', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME),
				'expected' => array( 'Category', 'Subcategory' ),
			),
			array(
				'params' =>	array( 'name' => '/path/index.php?var=test', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME),
				'expected' => array( 'path', 'index.php?var=test' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/path/Default.aspx#anchor', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME),
				'expected' => array( 'path', 'Default.aspx' ),
			),
			array(
				'params' =>	array( 'name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_NAME),
				'expected' => array( Zend_Registry::get('config')->General->action_default_name_when_not_defined ),
			),
			array(
				'params' =>	array( 'name' => '', 'type' => Piwik_Tracker_Action::TYPE_ACTION_URL),
				'expected' => array( Zend_Registry::get('config')->General->action_default_url_when_not_defined ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/download.zip', 'type' => Piwik_Tracker_Action::TYPE_DOWNLOAD),
				'expected' => array( 'example.org', '/download.zip' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/download/1/', 'type' => Piwik_Tracker_Action::TYPE_DOWNLOAD),
				'expected' => array( 'example.org', '/download/1/' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/link', 'type' => Piwik_Tracker_Action::TYPE_OUTLINK),
				'expected' => array( 'example.org', '/link' ),
			),
			array(
				'params' =>	array( 'name' => 'http://example.org/some/path/', 'type' => Piwik_Tracker_Action::TYPE_OUTLINK),
				'expected' => array( 'example.org', '/some/path/' ),
			),

		);
		foreach($tests as $test) {
			$params = $test['params'];
			$expected = $test['expected'];
			$this->assertEqual($action->public_getActionExplodedNames($params['name'],$params['type']), $expected);
		}
	}
Example #3
0
 /**
  * @dataProvider getActionNameTestData
  * @group        Plugins
  * @group        Actions
  */
 public function testGetActionExplodedNames($params, $expected)
 {
     $action = new Test_Piwik_Actions_getActionExplodedNames();
     $processed = $action->public_getActionExplodedNames($params['name'], $params['type'], isset($params['urlPrefix']) ? $params['urlPrefix'] : null);
     $this->assertEquals($expected, $processed);
 }