1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
<?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_Gapps
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2014 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/Gapps.php';
require_once 'Zend/Gdata/Gapps/GroupQuery.php';
/**
* @category Zend
* @package Zend_Gdata_Gapps
* @subpackage UnitTests
* @copyright Copyright (c) 2005-2014 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_Gapps
*/
class Zend_Gdata_Gapps_GroupQueryTest extends PHPUnit_Framework_TestCase
{
public function setUp()
{
$this->query = new Zend_Gdata_Gapps_GroupQuery();
}
// Test to make sure that URI generation works
public function testDefaultQueryURIGeneration()
{
$this->query->setDomain("foo.bar.invalid");
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/foo.bar.invalid",
$this->query->getQueryUrl());
}
// Test to make sure that the domain accessor methods work and propagate
// to the query URI.
public function testCanSetQueryDomain()
{
$this->query->setDomain("my.domain.com");
$this->assertEquals("my.domain.com", $this->query->getDomain());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com",
$this->query->getQueryUrl());
$this->query->setDomain("hello.world.baz");
$this->assertEquals("hello.world.baz", $this->query->getDomain());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/hello.world.baz",
$this->query->getQueryUrl());
}
// Test to make sure that the groupId accessor methods work and propagate
// to the query URI.
public function testCanSetGroupIdProperty()
{
$this->query->setDomain("my.domain.com");
$this->query->setGroupId("foo");
$this->assertEquals("foo", $this->query->getGroupId());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/foo",
$this->query->getQueryUrl());
$this->query->setGroupId("bar");
$this->assertEquals("bar", $this->query->getGroupId());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/bar",
$this->query->getQueryUrl());
}
// Test to make sure that the member accessor methods work and propagate
// to the query URI.
public function testCanSetMemberProperty()
{
$this->query->setDomain("my.domain.com");
$this->query->setMember("bar@qux.com");
$this->assertEquals("bar@qux.com", $this->query->getMember());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/?member=bar%40qux.com",
$this->query->getQueryUrl());
$this->query->setMember(null);
$this->assertEquals(null, $this->query->getMember());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com",
$this->query->getQueryUrl());
}
// Test to make sure that the startUsername accessor methods work and
// propagate to the query URI.
public function testCanSetStartGroupIdProperty()
{
$this->query->setDomain("my.domain.com");
$this->query->setStartGroupId("foo");
$this->assertEquals("foo", $this->query->getStartGroupId());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com?start=foo",
$this->query->getQueryUrl());
$this->query->setStartGroupId(null);
$this->assertEquals(null, $this->query->getStartGroupId());
$this->assertEquals("https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com",
$this->query->getQueryUrl());
}
public function testCanSetDirectOnlyProperty()
{
$this->query->setDomain("my.domain.com");
$this->query->setMember("bar@qux.com");
$this->query->setDirectOnly(true);
$this->assertEquals(true, $this->query->getDirectOnly());
$expected_url = "https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/";
$expected_url .= "?member=bar%40qux.com&directOnly=true";
$this->assertEquals($expected_url, $this->query->getQueryUrl());
$this->query->setDirectOnly(false);
$this->assertEquals(false, $this->query->getDirectOnly());
$expected_url = "https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/";
$expected_url .= "?member=bar%40qux.com&directOnly=false";
$this->assertEquals($expected_url, $this->query->getQueryUrl());
$this->query->setDirectOnly(null);
$this->assertEquals(null, $this->query->getDirectOnly());
$expected_url = "https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/";
$expected_url .= "?member=bar%40qux.com";
$this->assertEquals($expected_url, $this->query->getQueryUrl());
}
// Test to make sure that all parameters can be set simultaneously with no
// ill effects.
public function testCanSetAllParameters()
{
$this->query->setDomain("my.domain.com");
$this->query->setGroupId("foo");
$this->query->setMember("bar@qux.com");
$this->query->setStartGroupId("wibble");
$this->query->setDirectOnly(true);
$this->assertEquals("foo", $this->query->getGroupId());
$this->assertEquals("bar@qux.com", $this->query->getMember());
$this->assertEquals("wibble", $this->query->getStartGroupId());
$this->assertEquals(true, $this->query->getDirectOnly());
$expected_url = "https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/";
$expected_url .= "foo/?member=bar%40qux.com&start=wibble&directOnly=true";
$this->assertEquals($expected_url, $this->query->getQueryUrl());
$this->query->setMember("baz@blah.com");
$this->query->setGroupId("xyzzy");
$this->query->setStartGroupId("woof");
$this->query->setDirectOnly(false);
$this->assertEquals("xyzzy", $this->query->getGroupId());
$this->assertEquals("baz@blah.com", $this->query->getMember());
$this->assertEquals("woof", $this->query->getStartGroupId());
$this->assertEquals(false, $this->query->getDirectOnly());
$expected_url = "https://apps-apis.google.com/a/feeds/group/2.0/my.domain.com/";
$expected_url .= "xyzzy/?member=baz%40blah.com&start=woof&directOnly=false";
$this->assertEquals($expected_url, $this->query->getQueryUrl());
}
}
|