コード例 #1
0
ファイル: EnumTest.php プロジェクト: nucleus-be/zimbra-api
 public function testAttrMethod()
 {
     $values = array('getAttrs', 'setAttrs', 'getAttrs,setAttrs');
     foreach ($values as $value) {
         $this->assertTrue(\Zimbra\Enum\AttrMethod::has($value));
     }
 }
コード例 #2
0
 public function testGetEffectiveRightsApi()
 {
     $value = $this->faker->word;
     $secret = $this->faker->sha1;
     $target = new EffectiveRightsTargetSelector(TargetType::ACCOUNT(), TargetBy::NAME(), $value);
     $grantee = new GranteeSelector($value, GranteeType::USR(), GranteeBy::ID(), $secret, true);
     $this->api->getEffectiveRights($target, $grantee, AttrMethod::SET_ATTRS());
     $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:GetEffectiveRightsRequest expandAllAttrs="' . AttrMethod::SET_ATTRS() . '">' . '<urn1:target type="' . TargetType::ACCOUNT() . '" by="' . TargetBy::NAME() . '">' . $value . '</urn1:target>' . '<urn1:grantee type="' . GranteeType::USR() . '" by="' . GranteeBy::ID() . '" secret="' . $secret . '" all="true">' . $value . '</urn1:grantee>' . '</urn1:GetEffectiveRightsRequest>' . '</env:Body>' . '</env:Envelope>';
     $this->assertXmlStringEqualsXmlString($xml, (string) $req);
 }
コード例 #3
0
ファイル: RequestTest.php プロジェクト: nucleus-be/zimbra-api
 public function testGetEffectiveRights()
 {
     $value = self::randomName();
     $secret = self::randomName();
     $target = new \Zimbra\Admin\Struct\EffectiveRightsTargetSelector(TargetType::ACCOUNT(), TargetBy::NAME(), $value);
     $grantee = new \Zimbra\Admin\Struct\GranteeSelector($value, GranteeType::USR(), GranteeBy::ID(), $secret, true);
     $req = new \Zimbra\Admin\Request\GetEffectiveRights($target, $grantee, AttrMethod::GET_ATTRS());
     $this->assertInstanceOf('Zimbra\\Admin\\Request\\Base', $req);
     $this->assertSame($target, $req->getTarget());
     $this->assertSame($grantee, $req->getGrantee());
     $this->assertSame('getAttrs', $req->getExpandAllAttrs()->value());
     $req->setTarget($target)->setGrantee($grantee)->setExpandAllAttrs(AttrMethod::SET_ATTRS());
     $this->assertSame($target, $req->getTarget());
     $this->assertSame($grantee, $req->getGrantee());
     $this->assertSame('setAttrs', $req->getExpandAllAttrs()->value());
     $xml = '<?xml version="1.0"?>' . "\n" . '<GetEffectiveRightsRequest expandAllAttrs="' . AttrMethod::SET_ATTRS() . '">' . '<target type="' . TargetType::ACCOUNT() . '" by="' . TargetBy::NAME() . '">' . $value . '</target>' . '<grantee type="' . GranteeType::USR() . '" by="' . GranteeBy::ID() . '" secret="' . $secret . '" all="true">' . $value . '</grantee>' . '</GetEffectiveRightsRequest>';
     $this->assertXmlStringEqualsXmlString($xml, (string) $req);
     $array = ['GetEffectiveRightsRequest' => ['_jsns' => 'urn:zimbraAdmin', 'expandAllAttrs' => AttrMethod::SET_ATTRS()->value(), 'target' => ['type' => TargetType::ACCOUNT()->value(), '_content' => $value, 'by' => TargetBy::NAME()->value()], 'grantee' => ['_content' => $value, 'type' => GranteeType::USR()->value(), 'by' => GranteeBy::ID()->value(), 'secret' => $secret, 'all' => true]]];
     $this->assertEquals($array, $req->toArray());
 }