Fixing errors in unit tests for PHP 5.4+ and the way array keys for non-existant keys are handled.

This commit is contained in:
Matt Farina
2013-08-28 16:05:55 -04:00
parent 4c2cf64ca2
commit b9a715bdfd

View File

@@ -138,7 +138,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
$this->assertNotEmpty($tok2);
$details = $service->tokenDetails();
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
}
/**
@@ -248,7 +248,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
// Details for account auth.
$details = $service->tokenDetails();
$this->assertNotEmpty($details['id']);
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
$ts = strtotime($details['expires']);
$this->assertGreaterThan($now, $ts);
@@ -384,7 +384,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
$this->assertNotEmpty($token);
$details = $service->tokenDetails();
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
// With no tenant ID, there should be only
// one entry in the catalog.
@@ -402,7 +402,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
// Test unscoping
$service->rescopeUsingTenantId('');
$details = $service->tokenDetails();
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
$catalog = $service->serviceCatalog();
$this->assertEquals(1, count($catalog));
@@ -424,7 +424,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
$this->assertNotEmpty($token);
$details = $service->tokenDetails();
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
// With no tenant ID, there should be only
// one entry in the catalog.
@@ -442,7 +442,7 @@ class IdentityServicesTest extends \HPCloud\Tests\TestCase {
// Test unscoping
$service->rescope('');
$details = $service->tokenDetails();
$this->assertEmpty($details['tenant']);
$this->assertFalse(isset($details['tenant']));
$catalog = $service->serviceCatalog();
$this->assertEquals(1, count($catalog));