File: chrome_webloc_file_unittest.mm

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,071,864 kB
  • sloc: cpp: 34,936,859; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,953; asm: 946,768; xml: 739,967; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,806; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (125 lines) | stat: -rw-r--r-- 4,660 bytes parent folder | download | duplicates (4)
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
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/shortcuts/chrome_webloc_file.h"

#import <Foundation/Foundation.h>

#import "base/apple/foundation_util.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "chrome/browser/shortcuts/shortcut_creation_test_support.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"

namespace shortcuts {

class ChromeWeblocFileTest : public testing::Test {
 public:
  void SetUp() override { ASSERT_TRUE(temp_dir_.CreateUniqueTempDir()); }

  void TearDown() override { EXPECT_TRUE(temp_dir_.Delete()); }

 protected:
  base::ScopedTempDir temp_dir_;
};

TEST_F(ChromeWeblocFileTest, LoadFromFile_ValidFile) {
  const base::FilePath file_path =
      temp_dir_.GetPath().AppendASCII("test.crwebloc");
  // This test intentionally hardcodes a valid file rather than using
  // MacShortcutFile or NSDictionary to write a file to disk. This way we make
  // sure that even if the file format changes (intentionally or not) we can
  // still read files that were written in this format.
  ASSERT_TRUE(
      base::WriteFile(file_path, R"xml(<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
        <key>CrProfile</key>
        <string>DefaultName</string>
        <key>URL</key>
        <string>https://www.example.com:123/foo/bar#bla</string>
</dict>
</plist>
)xml"));

  std::optional<ChromeWeblocFile> shortcut =
      ChromeWeblocFile::LoadFromFile(file_path);
  ASSERT_TRUE(shortcut.has_value());

  EXPECT_EQ(GURL("https://www.example.com:123/foo/bar#bla"),
            shortcut->target_url());
  EXPECT_EQ(base::FilePath("DefaultName"),
            shortcut->profile_path_name().path());

  // Verify that the shortcut matchers work correctly as well.
  EXPECT_THAT(file_path, IsShortcutForUrl(
                             GURL("https://www.example.com:123/foo/bar#bla")));
  EXPECT_THAT(file_path,
              IsShortcutForProfile(FILE_PATH_LITERAL("DefaultName")));
  EXPECT_THAT(file_path, IsShortcutWithTitle(u"test"));
}

TEST_F(ChromeWeblocFileTest, LoadFromFile_FileDoesNotExist) {
  EXPECT_FALSE(
      ChromeWeblocFile::LoadFromFile(
          temp_dir_.GetPath().AppendASCII("file_does_not_exist.crwebloc"))
          .has_value());
}

TEST_F(ChromeWeblocFileTest, LoadFromFile_NotAPList) {
  const base::FilePath not_a_plist_path =
      temp_dir_.GetPath().AppendASCII("not_a_plist.crwebloc");
  ASSERT_TRUE(base::WriteFile(not_a_plist_path, "Hello world"));
  EXPECT_FALSE(ChromeWeblocFile::LoadFromFile(not_a_plist_path).has_value());
}

TEST_F(ChromeWeblocFileTest, LoadFromFile_MissingUrl) {
  const base::FilePath missing_url_path =
      temp_dir_.GetPath().AppendASCII("missing_url.crwebloc");
  ASSERT_TRUE([@{@"CrProfile" : @"DefaultName"}
      writeToURL:base::apple::FilePathToNSURL(missing_url_path)
           error:nil]);
  EXPECT_FALSE(ChromeWeblocFile::LoadFromFile(missing_url_path).has_value());
}

TEST_F(ChromeWeblocFileTest, LoadFromFile_MissingProfile) {
  const base::FilePath missing_profile_path =
      temp_dir_.GetPath().AppendASCII("missing_profile.crwebloc");
  ASSERT_TRUE([@{@"URL" : @"https://www.example.com/"}
      writeToURL:base::apple::FilePathToNSURL(missing_profile_path)
           error:nil]);
  EXPECT_FALSE(
      ChromeWeblocFile::LoadFromFile(missing_profile_path).has_value());
}

TEST_F(ChromeWeblocFileTest, LoadFromFile_InvalidUrl) {
  const base::FilePath invalid_url_path =
      temp_dir_.GetPath().AppendASCII("invalid_url.crwebloc");
  ASSERT_TRUE(([@{@"URL" : @"not-a-url", @"CrProfile" : @"DefaultName"}
      writeToURL:base::apple::FilePathToNSURL(invalid_url_path)
           error:nil]));
  EXPECT_FALSE(ChromeWeblocFile::LoadFromFile(invalid_url_path).has_value());
}

TEST_F(ChromeWeblocFileTest, SaveToFile) {
  const GURL url("https://www.example.com:123/foo/bar#bla");

  const base::FilePath file_path =
      temp_dir_.GetPath().AppendASCII("test.crwebloc");
  const base::SafeBaseName profile_path_name =
      *base::SafeBaseName::Create(FILE_PATH_LITERAL("Test Profile"));
  ChromeWeblocFile(url, profile_path_name).SaveToFile(file_path);

  std::optional<ChromeWeblocFile> shortcut =
      ChromeWeblocFile::LoadFromFile(file_path);
  ASSERT_TRUE(shortcut.has_value());

  EXPECT_EQ(url, shortcut->target_url());
  EXPECT_EQ(profile_path_name, shortcut->profile_path_name());
}

}  // namespace shortcuts