// Test for method java.lang.Package.getClass().getDeclaredMethod()

// Copyright (C) 2012, 2013, 2014, 2015, 2016 Pavel Tisnovsky <ptisnovs@redhat.com>

// This file is part of Mauve.

// Mauve is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2, or (at your option)
// any later version.

// Mauve is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with Mauve; see the file COPYING.  If not, write to
// the Free Software Foundation, Inc., 51 Franklin Street,
// Fifth Floor, Boston, MA 02110-1301 USA.

// Tags: JDK1.5

package gnu.testlet.java.lang.Package.classInfo;

import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;

import java.lang.Package;
import java.util.Map;
import java.util.HashMap;



/**
 * Test for method java.lang.Package.getClass().getDeclaredMethod()
 */
public class getDeclaredMethod implements Testlet
{

    /**
     * Runs the test using the specified harness.
     *
     * @param harness  the test harness (<code>null</code> not permitted).
     */
    public void test(TestHarness harness)
    {
        // following declared methods should exist
        Map<String, Class[]> methodsThatShouldExist_jdk6 = new HashMap<String, Class[]>();
        methodsThatShouldExist_jdk6.put("toString", new Class[] {});
        methodsThatShouldExist_jdk6.put("hashCode", new Class[] {});
        methodsThatShouldExist_jdk6.put("getName", new Class[] {});
        methodsThatShouldExist_jdk6.put("getPackages", new Class[] {});
        methodsThatShouldExist_jdk6.put("access$000", new Class[] {});
        methodsThatShouldExist_jdk6.put("getSystemPackage", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("getSystemPackages", new Class[] {});
        methodsThatShouldExist_jdk6.put("access$200", new Class[] {});
        methodsThatShouldExist_jdk6.put("getPackage", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("getPackage", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk6.put("getAnnotation", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk6.put("isAnnotationPresent", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk6.put("getAnnotations", new Class[] {});
        methodsThatShouldExist_jdk6.put("getDeclaredAnnotations", new Class[] {});
        methodsThatShouldExist_jdk6.put("access$100", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("access$400", new Class[] {});
        methodsThatShouldExist_jdk6.put("isSealed", new Class[] {});
        methodsThatShouldExist_jdk6.put("isSealed", new Class[] {java.net.URL.class});
        methodsThatShouldExist_jdk6.put("getSpecificationTitle", new Class[] {});
        methodsThatShouldExist_jdk6.put("getSpecificationVersion", new Class[] {});
        methodsThatShouldExist_jdk6.put("getSpecificationVendor", new Class[] {});
        methodsThatShouldExist_jdk6.put("getImplementationTitle", new Class[] {});
        methodsThatShouldExist_jdk6.put("getImplementationVersion", new Class[] {});
        methodsThatShouldExist_jdk6.put("getImplementationVendor", new Class[] {});
        methodsThatShouldExist_jdk6.put("isCompatibleWith", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("getPackageInfo", new Class[] {});
        methodsThatShouldExist_jdk6.put("defineSystemPackage", new Class[] {java.lang.String.class, java.lang.String.class});
        methodsThatShouldExist_jdk6.put("loadManifest", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("getSystemPackage0", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk6.put("getSystemPackages0", new Class[] {});

        Map<String, Class[]> methodsThatShouldExist_jdk7 = new HashMap<String, Class[]>();
        methodsThatShouldExist_jdk7.put("toString", new Class[] {});
        methodsThatShouldExist_jdk7.put("hashCode", new Class[] {});
        methodsThatShouldExist_jdk7.put("getName", new Class[] {});
        methodsThatShouldExist_jdk7.put("access$100", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk7.put("getAnnotation", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk7.put("getAnnotations", new Class[] {});
        methodsThatShouldExist_jdk7.put("getDeclaredAnnotations", new Class[] {});
        methodsThatShouldExist_jdk7.put("getPackage", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk7.put("getPackage", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk7.put("isAnnotationPresent", new Class[] {java.lang.Class.class});
        methodsThatShouldExist_jdk7.put("access$000", new Class[] {});
        methodsThatShouldExist_jdk7.put("access$200", new Class[] {});
        methodsThatShouldExist_jdk7.put("getPackages", new Class[] {});
        methodsThatShouldExist_jdk7.put("getSystemPackage", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk7.put("getSystemPackages", new Class[] {});
        methodsThatShouldExist_jdk7.put("access$400", new Class[] {});
        methodsThatShouldExist_jdk7.put("isSealed", new Class[] {});
        methodsThatShouldExist_jdk7.put("isSealed", new Class[] {java.net.URL.class});
        methodsThatShouldExist_jdk7.put("getImplementationTitle", new Class[] {});
        methodsThatShouldExist_jdk7.put("defineSystemPackage", new Class[] {java.lang.String.class, java.lang.String.class});
        methodsThatShouldExist_jdk7.put("getImplementationVendor", new Class[] {});
        methodsThatShouldExist_jdk7.put("getImplementationVersion", new Class[] {});
        methodsThatShouldExist_jdk7.put("getPackageInfo", new Class[] {});
        methodsThatShouldExist_jdk7.put("getSpecificationTitle", new Class[] {});
        methodsThatShouldExist_jdk7.put("getSpecificationVendor", new Class[] {});
        methodsThatShouldExist_jdk7.put("getSpecificationVersion", new Class[] {});
        methodsThatShouldExist_jdk7.put("getSystemPackage0", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk7.put("getSystemPackages0", new Class[] {});
        methodsThatShouldExist_jdk7.put("isCompatibleWith", new Class[] {java.lang.String.class});
        methodsThatShouldExist_jdk7.put("loadManifest", new Class[] {java.lang.String.class});

        // get the right map containing method signatures
        Map<String, Class[]> methodsThatShouldExist = getJavaVersion() < 7 ? methodsThatShouldExist_jdk6 : methodsThatShouldExist_jdk7;

        // create instance of a class Package
        final Object o = Package.getPackage("java.lang");

        // get a runtime class of an object "o"
        final Class c = o.getClass();

        // check if all required methods really exist
        for (Map.Entry<String, Class[]> methodThatShouldExists : methodsThatShouldExist.entrySet()) {
            try {
                java.lang.reflect.Method method = c.getDeclaredMethod(methodThatShouldExists.getKey(), methodThatShouldExists.getValue());
                harness.check(method != null);
                String methodName = method.getName();
                harness.check(methodName != null);
                harness.check(methodName, methodThatShouldExists.getKey());
            }
            catch (Exception e) {
                harness.check(false);
            }
        }
    }

    /**
     * Returns version of Java. The input could have the following form: "1.7.0_06"
     * and we are interested only in "7" in this case.
     * 
     * @return Java version
     */
    protected int getJavaVersion() {
        String javaVersionStr = System.getProperty("java.version");
        String[] parts = javaVersionStr.split("\\.");
        return Integer.parseInt(parts[1]);
    }
}

