1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "net/ftp/ftp_directory_listing_parser_unittest.h"
7 #include "base/format_macros.h"
8 #include "base/strings/string_util.h"
9 #include "base/strings/stringprintf.h"
10 #include "base/strings/string_split.h"
11 #include "base/strings/utf_string_conversions.h"
12 #include "net/ftp/ftp_directory_listing_parser_vms.h"
14 using base::ASCIIToUTF16
;
20 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserVmsTest
;
22 TEST_F(FtpDirectoryListingParserVmsTest
, Good
) {
23 const struct SingleLineTestData good_cases
[] = {
24 { "README.TXT;4 2 18-APR-2000 10:40:39.90",
25 FtpDirectoryListingEntry::FILE, "readme.txt", 1024,
26 2000, 4, 18, 10, 40 },
27 { ".WELCOME;1 2 13-FEB-2002 23:32:40.47",
28 FtpDirectoryListingEntry::FILE, ".welcome", 1024,
29 2002, 2, 13, 23, 32 },
30 { "FILE.;1 2 13-FEB-2002 23:32:40.47",
31 FtpDirectoryListingEntry::FILE, "file.", 1024,
32 2002, 2, 13, 23, 32 },
33 { "EXAMPLE.TXT;1 1 4-NOV-2009 06:02 [JOHNDOE] (RWED,RWED,,)",
34 FtpDirectoryListingEntry::FILE, "example.txt", 512,
36 { "ANNOUNCE.TXT;2 1/16 12-MAR-2005 08:44:57 [SYSTEM] (RWED,RWED,RE,RE)",
37 FtpDirectoryListingEntry::FILE, "announce.txt", 512,
39 { "TEST.DIR;1 1 4-MAR-1999 22:14:34 [UCX$NOBO,ANONYMOUS] (RWE,RWE,RWE,RWE)",
40 FtpDirectoryListingEntry::DIRECTORY
, "test", -1,
42 { "ANNOUNCE.TXT;2 1 12-MAR-2005 08:44:57 [X] (,,,)",
43 FtpDirectoryListingEntry::FILE, "announce.txt", 512,
45 { "ANNOUNCE.TXT;2 1 12-MAR-2005 08:44:57 [X] (R,RW,RWD,RE)",
46 FtpDirectoryListingEntry::FILE, "announce.txt", 512,
48 { "ANNOUNCE.TXT;2 1 12-MAR-2005 08:44:57 [X] (ED,RED,WD,WED)",
49 FtpDirectoryListingEntry::FILE, "announce.txt", 512,
51 { "VMS721.ISO;2 ****** 6-MAY-2008 09:29 [ANONY,ANONYMOUS] (RE,RWED,RE,RE)",
52 FtpDirectoryListingEntry::FILE, "vms721.iso", -1,
55 for (size_t i
= 0; i
< arraysize(good_cases
); i
++) {
56 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS
"]: %s", i
,
57 good_cases
[i
].input
));
59 std::vector
<base::string16
> lines(
60 GetSingleLineTestCase(good_cases
[i
].input
));
62 // The parser requires a directory header before accepting regular input.
63 lines
.insert(lines
.begin(),
64 ASCIIToUTF16("Directory ANONYMOUS_ROOT:[000000]"));
66 // A valid listing must also have a "Total" line at the end.
67 lines
.insert(lines
.end(),
68 ASCIIToUTF16("Total of 1 file, 2 blocks."));
70 std::vector
<FtpDirectoryListingEntry
> entries
;
71 EXPECT_TRUE(ParseFtpDirectoryListingVms(lines
,
73 VerifySingleLineTestCase(good_cases
[i
], entries
);
77 TEST_F(FtpDirectoryListingParserVmsTest
, Bad
) {
78 const char* const bad_cases
[] = {
81 // Missing file version number.
82 "README.TXT 2 18-APR-2000 10:40:39",
85 "README;1 2 18-APR-2000 10:40:39",
87 // Malformed file size.
88 "README.TXT;1 garbage 18-APR-2000 10:40:39",
89 "README.TXT;1 -2 18-APR-2000 10:40:39",
92 "README.TXT;1 2 APR-2000 10:40:39",
93 "README.TXT;1 2 -18-APR-2000 10:40:39",
94 "README.TXT;1 2 18-APR 10:40:39",
95 "README.TXT;1 2 18-APR-2000 10",
96 "README.TXT;1 2 18-APR-2000 10:40.25",
97 "README.TXT;1 2 18-APR-2000 10:40.25.25",
99 // Malformed security information.
100 "X.TXT;2 1 12-MAR-2005 08:44:57 (RWED,RWED,RE,RE)",
101 "X.TXT;2 1 12-MAR-2005 08:44:57 [SYSTEM]",
102 "X.TXT;2 1 12-MAR-2005 08:44:57 (SYSTEM) (RWED,RWED,RE,RE)",
103 "X.TXT;2 1 12-MAR-2005 08:44:57 [SYSTEM] [RWED,RWED,RE,RE]",
104 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED)",
105 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED,RWED,RE,RE,RE)",
106 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED,RWEDRWED,RE,RE)",
107 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED,DEWR,RE,RE)",
108 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED,RWED,Q,RE)",
109 "X.TXT;2 1 12-MAR-2005 08:44:57 [X] (RWED,RRWWEEDD,RE,RE)",
111 for (size_t i
= 0; i
< arraysize(bad_cases
); i
++) {
112 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS
"]: %s", i
, bad_cases
[i
]));
114 std::vector
<base::string16
> lines(GetSingleLineTestCase(bad_cases
[i
]));
116 // The parser requires a directory header before accepting regular input.
117 lines
.insert(lines
.begin(),
118 ASCIIToUTF16("Directory ANONYMOUS_ROOT:[000000]"));
120 // A valid listing must also have a "Total" line at the end.
121 lines
.insert(lines
.end(),
122 ASCIIToUTF16("Total of 1 file, 2 blocks."));
124 std::vector
<FtpDirectoryListingEntry
> entries
;
125 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines
,
130 TEST_F(FtpDirectoryListingParserVmsTest
, BadDataAfterFooter
) {
131 const char* const bad_cases
[] = {
133 "Total of 1 file, 2 blocks.",
134 "Directory ANYNYMOUS_ROOT:[000000]",
136 for (size_t i
= 0; i
< arraysize(bad_cases
); i
++) {
137 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS
"]: %s", i
, bad_cases
[i
]));
139 std::vector
<base::string16
> lines(
140 GetSingleLineTestCase("README.TXT;4 2 18-APR-2000 10:40:39.90"));
142 // The parser requires a directory header before accepting regular input.
143 lines
.insert(lines
.begin(),
144 ASCIIToUTF16("Directory ANONYMOUS_ROOT:[000000]"));
146 // A valid listing must also have a "Total" line at the end.
147 lines
.insert(lines
.end(),
148 ASCIIToUTF16("Total of 1 file, 2 blocks."));
151 // Make sure the listing is valid before we add data after footer.
152 std::vector
<FtpDirectoryListingEntry
> entries
;
153 EXPECT_TRUE(ParseFtpDirectoryListingVms(lines
,
158 // Insert a line at the end of the listing that should make it invalid.
159 lines
.insert(lines
.end(),
160 ASCIIToUTF16(bad_cases
[i
]));
161 std::vector
<FtpDirectoryListingEntry
> entries
;
162 EXPECT_FALSE(ParseFtpDirectoryListingVms(lines
,