/* $Id: TestModel.java 17766 2010-01-11 21:21:20Z linus $ ***************************************************************************** * Copyright (c) 2009 Contributors - see below * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * tfmorris ***************************************************************************** * * Some portions of this file was previously release using the BSD License: */ // Copyright (c) 2004-2006 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.model; import java.lang.reflect.Method; import java.lang.reflect.Modifier; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; /** * Test that the Model class returns only * model implementation independent interfaces. */ public class TestModel extends TestCase { /** * The method to test. */ private Method savedMethod; /** * @param arg0 The name of the test case. */ public TestModel(String arg0) { super(arg0); } /** * Create a test for one of the methods in Model. * * @param modelMethod The method to test. */ public TestModel(Method modelMethod) { this(modelMethod.getName()); savedMethod = modelMethod; } /** * @return the test suite */ public static Test suite() { TestSuite suite = new TestSuite("Tests for " + TestModel.class.getPackage().getName()); Method[] modelMethods = Model.class.getDeclaredMethods(); for (int i = 0; i < modelMethods.length; i++) { Method modelMethod = modelMethods[i]; if (!Modifier.isPublic(modelMethod.getModifiers())) { // This is a private method in Model. continue; } suite.addTest(new TestModel(modelMethod)); } return suite; } /** * Test each of the interfaces returned so that they don't contain any * model implementation artifacts in any of their signatures. */ public void testInterfaces() { } /** * Run the test for one method. * * @see junit.framework.TestCase#runTest() */ public void runTest() { assertTrue("The method " + savedMethod + "is not static", Modifier.isStatic(savedMethod.getModifiers())); Class factoryIF = savedMethod.getReturnType(); // Handling methods that doesn't return if (factoryIF.isPrimitive() && factoryIF.getName().equals("void")) { return; } // Handling the isInitiated method if (factoryIF.isPrimitive() && factoryIF.getName().equals("boolean")) { return; } // Handling the initialise method if (factoryIF.getName().equals("java.lang.Throwable")) { return; } // Handle methods which return opaque objects if (factoryIF.getName().equals("java.lang.Object")) { return; } assertTrue("The return type from " + savedMethod + " must be an interface.", factoryIF.isInterface()); checkInterface(factoryIF); } /** * Check that an interface obeys the rules.<p> * * This checks all extended interfaces recursively.<p> * * @param theInterface The interface to check. */ private void checkInterface(Class theInterface) { Method[] methods = theInterface.getDeclaredMethods(); for (int i = 0; i < methods.length; i++) { Method method = methods[i]; assertTrue("The method " + method + " has invalid return type " + method.getReturnType(), isValid(method.getReturnType())); Class[] parameters = method.getParameterTypes(); for (int k = 0; k < parameters.length; k++) { assertTrue("The method " + method + " has invalid parameter type " + parameters[k], isValid(parameters[k])); } } Class[] inherited = theInterface.getInterfaces(); for (int i = 0; i < inherited.length; i++) { checkInterface(inherited[i]); } } /** * Prefix identified as an implementation specific class. * TODO: This should be generalized so it doesn't have to be changed * each time a new implementation is created - tfm 20051109 */ private static final String UML_PATH_PREFIX; static { UML_PATH_PREFIX = "org.omg.uml."; } /** * Tells if a type is valid or not. * * @param cls The class to test. * @return <code>true</code> if it is. */ private boolean isValid(Class cls) { int length = UML_PATH_PREFIX.length(); if (cls.getName().length() > length && cls.getName().substring(0, length).equals(UML_PATH_PREFIX)) { return false; } return true; } }