Esempio n. 1
0
 public function testGetSessionsApi()
 {
     $limit = mt_rand(0, 100);
     $offset = mt_rand(0, 100);
     $this->api->getSessions(SessionType::ADMIN(), SessionsSortBy::NAME_DESC(), $limit, $offset, true);
     $client = $this->api->getClient();
     $req = $client->lastRequest();
     $xml = '<?xml version="1.0"?>' . "\n" . '<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope" xmlns:urn="urn:zimbra" xmlns:urn1="urn:zimbraAdmin">' . '<env:Body>' . '<urn1:GetSessionsRequest ' . 'type="' . SessionType::ADMIN() . '" ' . 'sortBy="' . SessionsSortBy::NAME_DESC() . '" ' . 'limit="' . $limit . '" ' . 'offset="' . $offset . '" ' . 'refresh="true" />' . '</env:Body>' . '</env:Envelope>';
     $this->assertXmlStringEqualsXmlString($xml, (string) $req);
 }
Esempio n. 2
0
 public function testSessionType()
 {
     $values = array('soap', 'imap', 'admin');
     foreach ($values as $value) {
         $this->assertTrue(\Zimbra\Enum\SessionType::has($value));
     }
 }
Esempio n. 3
0
 public function testGetSessions()
 {
     $limit = mt_rand(0, 100);
     $offset = mt_rand(0, 100);
     $req = new \Zimbra\Admin\Request\GetSessions(SessionType::SOAP(), SessionsSortBy::NAME_ASC(), $limit, $offset, false);
     $this->assertInstanceOf('Zimbra\\Admin\\Request\\Base', $req);
     $this->assertSame('soap', $req->getType()->value());
     $this->assertSame('nameAsc', $req->getSortBy()->value());
     $this->assertSame($limit, $req->getLimit());
     $this->assertSame($offset, $req->getOffset());
     $this->assertFalse($req->getRefresh());
     $req->setType(SessionType::ADMIN())->setSortBy(SessionsSortBy::NAME_DESC())->setLimit($limit)->setOffset($offset)->setRefresh(true);
     $this->assertSame('admin', $req->getType()->value());
     $this->assertSame('nameDesc', $req->getSortBy()->value());
     $this->assertSame($limit, $req->getLimit());
     $this->assertSame($offset, $req->getOffset());
     $this->assertTrue($req->getRefresh());
     $xml = '<?xml version="1.0"?>' . "\n" . '<GetSessionsRequest ' . 'type="' . SessionType::ADMIN() . '" ' . 'sortBy="' . SessionsSortBy::NAME_DESC() . '" ' . 'limit="' . $limit . '" ' . 'offset="' . $offset . '" ' . 'refresh="true" />';
     $this->assertXmlStringEqualsXmlString($xml, (string) $req);
     $array = ['GetSessionsRequest' => ['_jsns' => 'urn:zimbraAdmin', 'type' => SessionType::ADMIN()->value(), 'sortBy' => SessionsSortBy::NAME_DESC()->value(), 'limit' => $limit, 'offset' => $offset, 'refresh' => true]];
     $this->assertEquals($array, $req->toArray());
 }