You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-testmgr/external/ZendFramework-1.9.5/tests/Zend/Gdata/Health/QueryTest.php

155 lines
5.7 KiB
PHTML

<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://framework.zend.com/license/new-bsd
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@zend.com so we can send you a copy immediately.
*
* @category Zend
* @package Zend_Gdata_Health
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @version $Id $
*/
require_once 'Zend/Gdata/Health.php';
require_once 'Zend/Gdata/Health/Query.php';
require_once 'Zend/Http/Client.php';
/**
* @category Zend
* @package Zend_Gdata_Health
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2009 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @group Zend_Gdata
* @group Zend_Gdata_Health
*/
class Zend_Gdata_Health_QueryTest extends PHPUnit_Framework_TestCase
{
public function setUp()
{
$this->query = new Zend_Gdata_Health_Query();
}
public function testDigest()
{
$this->query->resetParameters();
$this->assertEquals(null, $this->query->getDigest());
$this->query->setDigest('true');
$this->assertEquals('true', $this->query->getDigest());
$this->assertContains('digest=true', $this->query->getQueryUrl());
}
public function testCategory()
{
$this->query->resetParameters();
$this->query->setCategory('medication');
$this->assertEquals($this->query->getCategory(), 'medication');
$this->query->setCategory('medication', 'Lipitor');
$this->assertEquals($this->query->getCategory(), 'medication/%7Bhttp%3A%2F%2Fschemas.google.com%2Fhealth%2Fitem%7DLipitor');
$this->query->setCategory('condition', 'Malaria');
$this->assertEquals($this->query->getCategory(), 'condition/%7Bhttp%3A%2F%2Fschemas.google.com%2Fhealth%2Fitem%7DMalaria');
}
public function testGrouped()
{
$this->query->resetParameters();
$this->query->setGrouped('true');
$this->assertEquals('true', $this->query->getGrouped());
$this->assertContains('grouped=true', $this->query->getQueryUrl());
}
public function testMaxResultsGroup()
{
$this->query->resetParameters();
try {
$this->query->setMaxResultsGroup(1);
$this->fail('Expecting to catch Zend_Gdata_App_InvalidArgumentException');
} catch (Exception $e) {
$this->assertThat($e, $this->isInstanceOf('Zend_Gdata_App_InvalidArgumentException'),
'Expecting Zend_Gdata_App_InvalidArgumentException, got '.get_class($e));
}
$this->assertEquals(null, $this->query->getMaxResultsGroup());
$this->query->setGrouped('true');
$this->query->setMaxResultsGroup(1);
$this->assertEquals(1, $this->query->getMaxResultsGroup());
$this->assertContains('max-results-group=1', $this->query->getQueryUrl());
}
public function testMaxResultsInGroup()
{
$this->query->resetParameters();
try {
$this->query->setMaxResultsInGroup(2);
$this->fail('Expecting to catch Zend_Gdata_App_InvalidArgumentException');
} catch (Exception $e) {
$this->assertThat($e, $this->isInstanceOf('Zend_Gdata_App_InvalidArgumentException'),
'Expecting Zend_Gdata_App_InvalidArgumentException, got '.get_class($e));
}
$this->query->setGrouped('true');
$this->assertEquals(null, $this->query->getMaxResultsInGroup());
$this->query->setMaxResultsInGroup(2);
$this->assertEquals(2, $this->query->getMaxResultsInGroup());
$this->assertContains('max-results-in-group=2', $this->query->getQueryUrl());
}
public function testStartIndexGroup()
{
$this->query->resetParameters();
$this->assertEquals(null, $this->query->getStartIndexGroup());
try {
$this->query->setStartIndexGroup(3);
$this->fail('Expecting to catch Zend_Gdata_App_InvalidArgumentException');
} catch (Exception $e) {
$this->assertThat($e, $this->isInstanceOf('Zend_Gdata_App_InvalidArgumentException'),
'Expecting Zend_Gdata_App_InvalidArgumentException, got '.get_class($e));
}
$this->query->setGrouped('true');
$this->query->setStartIndexGroup(3);
$this->assertEquals(3, $this->query->getStartIndexGroup());
$this->assertContains('start-index-group=3', $this->query->getQueryUrl());
}
public function testStartIndexInGroup()
{
$this->query->resetParameters();
$this->assertEquals(null, $this->query->getStartIndexInGroup());
try {
$this->query->setStartIndexInGroup(4);
$this->fail('Expecting to catch Zend_Gdata_App_InvalidArgumentException');
} catch (Exception $e) {
$this->assertThat($e, $this->isInstanceOf('Zend_Gdata_App_InvalidArgumentException'),
'Expecting Zend_Gdata_App_InvalidArgumentException, got '.get_class($e));
}
$this->query->setGrouped('true');
$this->query->setStartIndexInGroup(4);
$this->assertEquals(4, $this->query->getStartIndexInGroup());
$this->assertContains('start-index-in-group=4', $this->query->getQueryUrl());
}
}