src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph.test/src/org/graalvm/compiler/graph/test/graphio/GraphSnippetTest.java
author dlong
Thu, 15 Nov 2018 09:04:07 -0800
changeset 52578 7dd81e82d083
parent 51436 091c0d22e735
child 52910 583fd71c47d6
permissions -rw-r--r--
8210777: Update Graal Reviewed-by: kvn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     1
/*
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     2
 * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     4
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     7
 * published by the Free Software Foundation.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     8
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    13
 * accompanied this code).
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    14
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    18
 *
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    21
 * questions.
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    22
 */
50858
2d3e99a72541 8205824: Update Graal
never
parents: 47798
diff changeset
    23
2d3e99a72541 8205824: Update Graal
never
parents: 47798
diff changeset
    24
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    25
package org.graalvm.compiler.graph.test.graphio;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    26
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    27
import java.io.File;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    28
import java.lang.reflect.Method;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    29
import static org.junit.Assert.assertTrue;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    30
import org.junit.Assume;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    31
import org.junit.Test;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    32
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    33
public class GraphSnippetTest {
52578
7dd81e82d083 8210777: Update Graal
dlong
parents: 51436
diff changeset
    34
    @SuppressWarnings({"deprecation", "unused"})
47798
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    35
    @Test
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    36
    public void dumpTheFile() throws Exception {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    37
        Class<?> snippets = null;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    38
        try {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    39
            snippets = Class.forName("org.graalvm.graphio.GraphSnippets");
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    40
        } catch (ClassNotFoundException notFound) {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    41
            Assume.assumeNoException("The snippets class has to be around", notFound);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    42
        }
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    43
        Method dump = null;
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    44
        try {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    45
            dump = snippets.getDeclaredMethod("dump", File.class);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    46
            dump.setAccessible(true);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    47
        } catch (RuntimeException ex) {
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    48
            Assume.assumeTrue("Only run the test, if the method is accessible", dump != null && dump.isAccessible());
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    49
        }
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    50
        File diamond = File.createTempFile("diamond", ".bgv");
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    51
        dump.invoke(null, diamond);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    52
        assertTrue("File .bgv created: " + diamond, diamond.length() > 50);
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    53
    }
9fe9292f5931 8190710: Update Graal
dlong
parents:
diff changeset
    54
}