Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(541)

Side by Side Diff: net/ftp/ftp_directory_listing_parser_netware_unittest.cc

Issue 11418296: FTP: misc fixes resulting from my testing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: data files Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/ftp/ftp_directory_listing_parser_unittest.h" 5 #include "net/ftp/ftp_directory_listing_parser_unittest.h"
6 6
7 #include "base/format_macros.h" 7 #include "base/format_macros.h"
8 #include "base/string_util.h" 8 #include "base/string_util.h"
9 #include "base/stringprintf.h" 9 #include "base/stringprintf.h"
10 #include "base/utf_string_conversions.h" 10 #include "base/utf_string_conversions.h"
11 #include "net/ftp/ftp_directory_listing_parser_netware.h" 11 #include "net/ftp/ftp_directory_listing_parser_netware.h"
12 12
13 namespace net { 13 namespace net {
14 14
15 namespace { 15 namespace {
16 16
17 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserNetwareTest; 17 typedef FtpDirectoryListingParserTest FtpDirectoryListingParserNetwareTest;
18 18
19 TEST_F(FtpDirectoryListingParserNetwareTest, Good) { 19 TEST_F(FtpDirectoryListingParserNetwareTest, Good) {
20 const struct SingleLineTestData good_cases[] = { 20 const struct SingleLineTestData good_cases[] = {
21 { "d [RWCEAFMS] ftpadmin 512 Jan 29 2004 pub", 21 { "d [RWCEAFMS] ftpadmin 512 Jan 29 2004 pub",
22 FtpDirectoryListingEntry::DIRECTORY, "pub", -1, 22 FtpDirectoryListingEntry::DIRECTORY, "pub", -1,
23 2004, 1, 29, 0, 0 }, 23 2004, 1, 29, 0, 0 },
24 { "- [RW------] ftpadmin 123 Nov 11 18:25 afile", 24 { "- [RW------] ftpadmin 123 Nov 11 18:25 afile",
25 FtpDirectoryListingEntry::FILE, "afile", 123, 25 FtpDirectoryListingEntry::FILE, "afile", 123,
26 1994, 11, 11, 18, 25 }, 26 1994, 11, 11, 18, 25 },
27 { "d [RWCEAFMS] daniel 512 May 17 2010 NVP anyagok",
28 FtpDirectoryListingEntry::DIRECTORY, "NVP anyagok", -1,
29 2010, 5, 17, 0, 0 },
27 }; 30 };
28 for (size_t i = 0; i < arraysize(good_cases); i++) { 31 for (size_t i = 0; i < arraysize(good_cases); i++) {
29 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %s", i, 32 SCOPED_TRACE(base::StringPrintf("Test[%" PRIuS "]: %s", i,
30 good_cases[i].input)); 33 good_cases[i].input));
31 34
32 std::vector<string16> lines(GetSingleLineTestCase(good_cases[i].input)); 35 std::vector<string16> lines(GetSingleLineTestCase(good_cases[i].input));
33 36
34 // The parser requires a "total n" line before accepting regular input. 37 // The parser requires a "total n" line before accepting regular input.
35 lines.insert(lines.begin(), ASCIIToUTF16("total 1")); 38 lines.insert(lines.begin(), ASCIIToUTF16("total 1"));
36 39
(...skipping 27 matching lines...) Expand all
64 std::vector<FtpDirectoryListingEntry> entries; 67 std::vector<FtpDirectoryListingEntry> entries;
65 EXPECT_FALSE(ParseFtpDirectoryListingNetware(lines, 68 EXPECT_FALSE(ParseFtpDirectoryListingNetware(lines,
66 GetMockCurrentTime(), 69 GetMockCurrentTime(),
67 &entries)); 70 &entries));
68 } 71 }
69 } 72 }
70 73
71 } // namespace 74 } // namespace
72 75
73 } // namespace net 76 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698