File: crx_cache_unittest.cc

package info (click to toggle)
chromium 138.0.7204.157-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • 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 (186 lines) | stat: -rw-r--r-- 6,656 bytes parent folder | download | duplicates (3)
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
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/update_client/crx_cache.h"

#include <map>
#include <memory>
#include <string>

#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
#include "base/functional/bind.h"
#include "base/functional/callback_helpers.h"
#include "base/memory/scoped_refptr.h"
#include "base/run_loop.h"
#include "base/test/bind.h"
#include "base/test/task_environment.h"
#include "base/types/expected.h"
#include "components/update_client/test_utils.h"
#include "components/update_client/update_client_errors.h"
#include "testing/gtest/include/gtest/gtest.h"

namespace update_client {
namespace {

auto ExpectPathExists() {
  return base::BindOnce(
      [](base::expected<base::FilePath, UnpackerError> result) {
        ASSERT_TRUE(result.has_value()) << static_cast<int>(result.error());
        EXPECT_TRUE(base::PathExists(result.value())) << result.value().value();
      });
}

auto ExpectError(UnpackerError error) {
  return base::BindOnce(
      [](UnpackerError error,
         base::expected<base::FilePath, UnpackerError> result) {
        ASSERT_FALSE(result.has_value()) << result.value();
        EXPECT_EQ(result.error(), error);
      },
      error);
}

auto ExpectHashes(
    const std::multimap<std::string, std::string>& expected_hashes) {
  return base::BindOnce(
      [](const std::multimap<std::string, std::string>& expected_hashes,
         const std::multimap<std::string, std::string>& result) {
        EXPECT_EQ(result, expected_hashes);
      },
      expected_hashes);
}

}  // namespace

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

  base::FilePath TempPath(const std::string& basename) {
    return temp_dir_.GetPath().AppendUTF8(basename);
  }

  base::FilePath MakeFile() {
    base::FilePath out;
    EXPECT_TRUE(base::CreateTemporaryFileInDir(temp_dir_.GetPath(), &out));
    return out;
  }

  void RunLoop() {
    loop_->Run();
    loop_ = std::make_unique<base::RunLoop>();
  }

  base::RepeatingClosure Quit() { return loop_->QuitClosure(); }

 private:
  base::ScopedTempDir temp_dir_;
  base::test::TaskEnvironment env_;
  std::unique_ptr<base::RunLoop> loop_ = std::make_unique<base::RunLoop>();
};

TEST_F(CrxCacheTest, PutGet) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->GetByFp("fp", ExpectPathExists());
  cache->GetByHash("hash", ExpectPathExists().Then(Quit()));
  RunLoop();
}

TEST_F(CrxCacheTest, GetMissing) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->GetByFp("fp2", ExpectError(UnpackerError::kCrxCacheFileNotCached));
  cache->GetByHash(
      "hash2", ExpectError(UnpackerError::kCrxCacheFileNotCached).Then(Quit()));
  RunLoop();
}

TEST_F(CrxCacheTest, PutReplacesByAppId) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->GetByHash("hash", ExpectPathExists().Then(Quit()));
  RunLoop();
  cache->Put(MakeFile(), "appid", "hash2", "fp2", ExpectPathExists());
  cache->GetByHash("hash", ExpectError(UnpackerError::kCrxCacheFileNotCached));
  cache->GetByHash("hash2", ExpectPathExists().Then(Quit()));
  RunLoop();
}

TEST_F(CrxCacheTest, PutAlreadyCached) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->GetByHash(
      "hash",
      base::BindLambdaForTesting(
          [&](base::expected<base::FilePath, UnpackerError> result) {
            if (!result.has_value()) {
              Quit().Run();
            }
            ASSERT_TRUE(result.has_value()) << static_cast<int>(result.error());
            cache->Put(
                result.value(), "appid", "hash", "fp",
                base::BindLambdaForTesting(
                    [&](base::expected<base::FilePath, UnpackerError> result2) {
                      if (!result2.has_value()) {
                        Quit().Run();
                      }
                      ASSERT_TRUE(result2.has_value())
                          << static_cast<int>(result2.error());
                      cache->GetByHash("hash", ExpectPathExists().Then(Quit()));
                    }));
          }));
  RunLoop();
}

TEST_F(CrxCacheTest, CacheNotProvided) {
  scoped_refptr<CrxCache> cache = base::MakeRefCounted<CrxCache>(std::nullopt);
  cache->Put(base::FilePath(FILE_PATH_LITERAL("crxcache_test_file")), "appid",
             "hash", "fp", ExpectError(UnpackerError::kCrxCacheNotProvided));
  cache->GetByFp("fp", ExpectError(UnpackerError::kCrxCacheNotProvided));
  cache->GetByHash("hash", ExpectError(UnpackerError::kCrxCacheNotProvided));
  cache->RemoveAll("appid", base::DoNothing());
  cache->ListHashesByAppId(ExpectHashes({}).Then(Quit()));
  RunLoop();
}

TEST_F(CrxCacheTest, ListHashesByAppId) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->ListHashesByAppId(ExpectHashes({}));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->ListHashesByAppId(ExpectHashes({{"appid", "hash"}}));
  cache->Put(MakeFile(), "appid2", "hash2", "fp2", ExpectPathExists());
  cache->ListHashesByAppId(
      ExpectHashes({{"appid", "hash"}, {"appid2", "hash2"}}).Then(Quit()));
  RunLoop();
  cache->Put(MakeFile(), "appid", "hash3", "fp3", ExpectPathExists());
  cache->ListHashesByAppId(
      ExpectHashes({{"appid", "hash3"}, {"appid2", "hash2"}}).Then(Quit()));
  RunLoop();
}

TEST_F(CrxCacheTest, RemoveAll) {
  scoped_refptr<CrxCache> cache =
      base::MakeRefCounted<CrxCache>(TempPath("cache_dir"));
  cache->Put(MakeFile(), "appid", "hash", "fp", ExpectPathExists());
  cache->Put(MakeFile(), "appid2", "hash2", "fp2", ExpectPathExists());
  cache->ListHashesByAppId(
      ExpectHashes({{"appid", "hash"}, {"appid2", "hash2"}}).Then(Quit()));
  RunLoop();
  cache->RemoveAll("appid", base::DoNothing());
  cache->ListHashesByAppId(ExpectHashes({{"appid2", "hash2"}}).Then(Quit()));
  RunLoop();
  cache->RemoveAll("appid2", base::DoNothing());
  cache->ListHashesByAppId(ExpectHashes({}).Then(Quit()));
  RunLoop();
}

}  // namespace update_client