From a9b40175ed894eb5fe44aa0140414e72533264d7 Mon Sep 17 00:00:00 2001 From: qadan Date: Fri, 3 Jul 2015 09:56:54 -0300 Subject: [PATCH] just get rid of it --- tests/includes/utilities.inc | 37 +++--------------------------------- 1 file changed, 3 insertions(+), 34 deletions(-) diff --git a/tests/includes/utilities.inc b/tests/includes/utilities.inc index 38a60462..a94d0ab9 100644 --- a/tests/includes/utilities.inc +++ b/tests/includes/utilities.inc @@ -112,7 +112,7 @@ class IslandoraTestUtilities extends IslandoraTestUtilityClass { * TRUE on success, FALSE on fail. */ public function assertDatastreams($object, array $datastreams) { - if (self::assertFedoraObject($object)) { + if ($object = islandora_object_load($object)) { $missing_datastreams = array_diff_key(array_flip($datastreams), $object->repository->api->a->listDatastreams($object->id)); if (!empty($missing_datastreams)) { @@ -134,7 +134,7 @@ class IslandoraTestUtilities extends IslandoraTestUtilityClass { * An array of datastreams to confirm not present. */ public function assertNoDatastreams($object, array $datastreams) { - if (self::assertFedoraObject($object, FALSE)) { + if ($object = islandora_object_load($object)) { $this->addResult("Failed to check the datastreams on the object; the object could not be loaded."); return; } @@ -166,7 +166,7 @@ class IslandoraTestUtilities extends IslandoraTestUtilityClass { * for examples. */ public function validateDatastreams($object, array $datastreams) { - if (self::assertFedoraObject($object, FALSE)) { + if ($object = islandora_object_load($object)) { $this->addResult(FALSE, "Datastream validation failed; Object passed in is invalid.", 'Islandora'); return; } @@ -341,35 +341,4 @@ QUERY; } return $return_value; } - - /** - * Asserts a Fedora object from an object or PID, and loads it if possible. - * - * @param FedoraObject|string $object - * The object to assess, or a string to use as a PID. - * @param bool $exists - * Whether or not the object should exist in the repository, according to - * our assertion. Defaults to TRUE. - * - * @return FedoraObject|bool - * The object in question if it was a FedoraObject or loaded into one, or - * FALSE otherwise. - */ - public static function assertFedoraObject($object, $exists = TRUE) { - if ($object instanceof FedoraObject) { - $this->addResult($exists, "Object loaded from $object->id is a Fedora repository object."); - return $object; - } - elseif (is_string($object)) { - $loaded_object = islandora_object_load($object); - if ($loaded_object instanceof FedoraObject) { - $this->addResult($exists, "Successfully loaded object $object from the Fedora repository."); - return $loaded_object; - } - $this->addResult($exists, "Object identified by $object was not found in the repository."); - return FALSE; - } - $this->addResult($exists, "Object passed in was not found in the repository."); - return FALSE; - } }