File: TestFtpTimeValue.java

package info (click to toggle)
openjdk-21 21.0.8%2B9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 823,976 kB
  • sloc: java: 5,613,338; xml: 1,643,607; cpp: 1,296,296; ansic: 420,291; asm: 404,850; objc: 20,994; sh: 15,271; javascript: 11,245; python: 6,895; makefile: 2,362; perl: 357; awk: 351; sed: 172; jsp: 24; csh: 3
file content (194 lines) | stat: -rw-r--r-- 8,079 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/*
 * Copyright (c) 2020, 2021, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code 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
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/*
 * @test
 * @bug 8255078
 * @summary verify that datetime in MDTM and MLSD responses are properly parsed
 * @library /test/lib
 * @modules java.base/sun.net.ftp
 * @build jdk.test.lib.Asserts
 * @run main/othervm -Duser.timezone=UTC TestFtpTimeValue
 * @run main/othervm -Duser.timezone=America/Los_Angeles TestFtpTimeValue
 */

import jdk.test.lib.Asserts;
import sun.net.ftp.FtpClient;

import java.io.*;
import java.net.*;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.TimeZone;


public class TestFtpTimeValue {
    private enum TestCase {
        AmTimeNoMilli(2019, 4, 20, 10, 57, 13, 0),
        AmTimeWithMilli(2019, 4, 20, 10, 57, 13, 50),
        PmTimeNoMilli(2019, 4, 20, 22, 57, 13, 0),
        PmTimeWithMilli(2019, 4, 20, 22, 57, 13, 50),
        ;

        public final Date expectedCreated;
        public final Date expectedModified;
        public final String create;
        public final String modify;

        TestCase(int year, int month, int day, int hrs, int min, int sec, int milliseconds) {
            var calendar = GregorianCalendar.getInstance(TimeZone.getTimeZone("GMT"));
            // month is 0-based in Calendar
            calendar.set(year, month - 1, day, hrs, min, sec);
            calendar.set(Calendar.MILLISECOND, milliseconds);
            expectedCreated = calendar.getTime();
            var s = String.format("%4d%02d%02d%02d%02d%02d", year, month, day, hrs, min, sec);
            if (milliseconds != 0) {
                s += "." + String.format("%03d", milliseconds);
            }
            create = s;

            calendar.add(GregorianCalendar.SECOND, 1);
            expectedModified = calendar.getTime();
            s = String.format("%4d%02d%02d%02d%02d%02d", year, month, day, hrs, min, sec + 1);
            if (milliseconds != 0) {
                s += "." + String.format("%03d", milliseconds);
            }
            modify = s;
        }
    }

    public static void main(String[] args) throws Exception {
        System.out.println("user.timezone: " + System.getProperty("user.timezone"));
        try (FtpServer server = new FtpServer();
             FtpClient client = FtpClient.create()) {
            (new Thread(server)).start();
            int port = server.getPort();
            var loopback = InetAddress.getLoopbackAddress();
            client.connect(new InetSocketAddress(loopback, port));
            client.enablePassiveMode(true);
            for (var testCase : TestCase.values()) {
                Asserts.assertEQ(testCase.expectedModified, client.getLastModified(testCase.name()),
                        "wrong modified date from MDTM for " + testCase);
            }
            for (var it = client.listFiles(null); it.hasNext(); ) {
                var e = it.next();
                Asserts.assertEQ(TestCase.valueOf(e.getName()).expectedCreated, e.getCreated(),
                        "wrong created date from MLSD for " + e.getName());
                Asserts.assertEQ(TestCase.valueOf(e.getName()).expectedModified, e.getLastModified(),
                        "wrong modified date from MLSD for " + e.getName());
            }
        }
    }

    private static class FtpServer implements AutoCloseable, Runnable {
        private final ServerSocket serverSocket;
        private final ServerSocket pasv;

        FtpServer() throws IOException {
            var loopback = InetAddress.getLoopbackAddress();
            serverSocket = new ServerSocket();
            serverSocket.bind(new InetSocketAddress(loopback, 0));
            pasv = new ServerSocket();
            pasv.bind(new InetSocketAddress(loopback, 0));
        }

        public void handleClient(Socket client) throws IOException {
            String str;

            client.setSoTimeout(10000);
            BufferedReader in = new BufferedReader(new InputStreamReader(client.getInputStream()));
            PrintWriter out = new PrintWriter(client.getOutputStream(), true);
            out.println("220 FTP serverSocket is ready.");
            boolean done = false;
            while (!done) {
                try {
                    str = in.readLine();
                } catch (SocketException e) {
                    done = true;
                    continue;
                }
                String cmd = str.substring(0, str.indexOf(" ") > 0 ? str.indexOf(" ") : str.length());
                String args = (cmd.equals(str)) ? "" : str.substring(str.indexOf(" ") + 1);
                System.err.println("C> " + str);
                switch (cmd) {
                    case "QUIT":
                        out.println("221 Goodbye.");
                        System.err.println("S> 221");
                        done = true;
                        break;
                    case "MDTM": {
                        var testCase = TestCase.valueOf(args);
                        out.println("213 " + testCase.modify);
                        System.err.println("S> 213");
                        break;
                    }
                    case "MLSD":
                        try (var socket = pasv.accept();
                             var dout = new PrintWriter(socket.getOutputStream(), true)) {
                            out.println("150 MLSD start");
                            System.err.println("S> 150");
                            for (var testCase : TestCase.values()) {
                                dout.printf("modify=%s;create=%s; %s%n",
                                            testCase.modify, testCase.create, testCase.name());
                            }
                        }
                        out.println("226 MLSD done.");
                        System.err.println("S> 226");
                        break;
                    case "EPSV":
                        if ("all".equalsIgnoreCase(args)) {
                            out.println("200 EPSV ALL command successful.");
                            System.err.println("S> 200");
                            continue;
                        }
                        out.println("229 Entering Extended Passive Mode (|||" + pasv.getLocalPort() + "|)");
                        System.err.println("S> 229");
                        break;
                    default:
                        System.err.println("S> 500");
                        out.println("500 unsupported command: " + str);
                }
            }
        }

        public int getPort() {
            return serverSocket.getLocalPort();
        }

        public void close() throws IOException {
            serverSocket.close();
            pasv.close();
        }

        @Override
        public void run() {
            try (Socket client = serverSocket.accept()) {
                handleClient(client);
            } catch (Throwable t) {
                t.printStackTrace();
                throw new RuntimeException("Problem in test execution", t);
            }
        }
    }
}