langtools/test/com/sun/javadoc/testCRLineSeparator/TestCRLineSeparator.java
author duke
Wed, 05 Jul 2017 20:26:01 +0200
changeset 29640 ddb95d8f169b
parent 24399 af1a0220d0fa
child 30730 d3ce7619db2c
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
23971
f5ff1f5a8dee 8031649: Clean up javadoc tests
jjg
parents: 19119
diff changeset
     2
 * Copyright (c) 2004, 2014, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3890
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3890
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 3890
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/*
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
06bc494ca11e Initial load
duke
parents:
diff changeset
    26
 * @bug      4979486
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary  Make sure tool parses CR line separators properly.
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author   jamieh
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    29
 * @library  ../lib
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    30
 * @build    JavadocTester
06bc494ca11e Initial load
duke
parents:
diff changeset
    31
 * @run main TestCRLineSeparator
06bc494ca11e Initial load
duke
parents:
diff changeset
    32
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    33
3783
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    34
import java.io.*;
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    35
import java.util.*;
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    36
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
public class TestCRLineSeparator extends JavadocTester {
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    39
    public static void main(String... args) throws Exception {
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    40
        TestCRLineSeparator tester = new TestCRLineSeparator();
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    41
        tester.runTests();
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    42
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    43
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    44
    @Test
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    45
    void test() throws IOException {
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    46
        initFiles(new File(testSrc), new File("src"), "pkg");
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    47
        javadoc("-d", "out",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    48
                "-sourcepath", "src",
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    49
                "pkg");
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    50
        checkExit(Exit.OK);
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    52
        checkOutput("pkg/MyClass.html", true,
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    53
                "Line 1\n"
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    54
                + " Line 2");
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
3783
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    57
    // recursively copy files from fromDir to toDir, replacing newlines
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    58
    // with \r
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    59
    void initFiles(File fromDir, File toDir, String f) throws IOException {
3783
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    60
        File from_f = new File(fromDir, f);
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    61
        File to_f = new File(toDir, f);
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    62
        if (from_f.isDirectory()) {
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    63
            to_f.mkdirs();
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    64
            for (String child: from_f.list()) {
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    65
                initFiles(from_f, to_f, child);
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    66
            }
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    67
        } else {
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    68
            List<String> lines = new ArrayList<>();
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    69
            try (BufferedReader in = new BufferedReader(new FileReader(from_f))) {
3783
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    70
                String line;
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    71
                while ((line = in.readLine()) != null)
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    72
                    lines.add(line);
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    73
            }
24399
af1a0220d0fa 8038730: Clean up the way JavadocTester is invoked, and checks for errors.
jjg
parents: 24072
diff changeset
    74
            try (BufferedWriter out = new BufferedWriter(new FileWriter(to_f))) {
3783
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    75
                for (String line: lines) {
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    76
                    out.write(line);
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    77
                    out.write("\r");
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    78
                }
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    79
            }
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    80
        }
f1aefacd7231 6879346: files have Windows newlines
jjg
parents: 10
diff changeset
    81
    }
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
}