/* * ----------------------------------------------------------------------------- * * <p><b>License and Copyright: </b>The contents of this file are subject to the * Mozilla Public License Version 1.1 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License * at <a href="http://www.mozilla.org/MPL">http://www.mozilla.org/MPL/.</a></p> * * <p>Software distributed under the License is distributed on an "AS IS" basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for * the specific language governing rights and limitations under the License.</p> * * <p>The entire file consists of original code. Copyright © 2003, 2004 * Tufts University. All rights reserved.</p> * * ----------------------------------------------------------------------------- */ package edu.tufts.osidimpl.testing.repository; import junit.framework.TestCase; public class GetRepositoryTest extends TestCase { public GetRepositoryTest(org.osid.repository.RepositoryManager repositoryManager, org.w3c.dom.Document document) throws org.osid.repository.RepositoryException, org.xml.sax.SAXParseException { // are there repositories to test for? org.w3c.dom.NodeList repositoriesNodeList = document.getElementsByTagName(OsidTester.REPOSITORY_BY_ID_TAG); int numRepositories = repositoriesNodeList.getLength(); for (int i=0; i < numRepositories; i++) { org.w3c.dom.Element repositoryElement = (org.w3c.dom.Element)repositoriesNodeList.item(i); String idString = repositoryElement.getAttribute(OsidTester.ID_ATTR); if (idString != null) { try { if (Utilities.isVerbose()) System.out.println("Looking for a repository with id " + idString); org.osid.shared.Id id = Utilities.getIdManager().getId(idString); org.osid.repository.Repository repository = repositoryManager.getRepository(id); System.out.println("PASSED: Repository By Id " + idString); // test metadata, if present RepositoryMetadataTest rmt = new RepositoryMetadataTest(repository,repositoryElement); } catch (org.osid.repository.RepositoryException rex) { if (Utilities.isVerbose()) rex.printStackTrace(); fail("No Repository with the ID " + idString); } catch (org.osid.id.IdException iex) { if (Utilities.isVerbose()) iex.printStackTrace(); fail("ID Manager Failed"); } } } } }