forked from microsoft/winget-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestSource.cpp
More file actions
425 lines (365 loc) · 13.5 KB
/
Copy pathTestSource.cpp
File metadata and controls
425 lines (365 loc) · 13.5 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
#include "pch.h"
#include "TestCommon.h"
#include "TestSource.h"
using namespace AppInstaller;
using namespace AppInstaller::Repository;
namespace TestCommon
{
namespace
{
size_t GetNextTestPackageId()
{
static std::atomic_size_t packageId(0);
return ++packageId;
}
}
TestPackageVersion::TestPackageVersion(const Manifest& manifest, MetadataMap installationMetadata, std::weak_ptr<const ISource> source) :
VersionManifest(manifest), Metadata(std::move(installationMetadata)), Source(source) {}
TestPackageVersion::TestPackageVersion(const Manifest& manifest, std::weak_ptr<const ISource> source, bool hideSystemReferenceStrings) :
VersionManifest(manifest), Source(source), HideSystemReferenceStrings(hideSystemReferenceStrings) {}
TestPackageVersion::LocIndString TestPackageVersion::GetProperty(PackageVersionProperty property) const
{
switch (property)
{
case PackageVersionProperty::Id:
return LocIndString{ VersionManifest.Id };
case PackageVersionProperty::Name:
return LocIndString{ VersionManifest.DefaultLocalization.Get<AppInstaller::Manifest::Localization::PackageName>() };
case PackageVersionProperty::Version:
return LocIndString{ VersionManifest.Version };
case PackageVersionProperty::Channel:
return LocIndString{ VersionManifest.Channel };
case PackageVersionProperty::SourceIdentifier:
return LocIndString{ Source.lock()->GetIdentifier() };
case PackageVersionProperty::Publisher:
return LocIndString{ VersionManifest.DefaultLocalization.Get<AppInstaller::Manifest::Localization::Publisher>() };
case PackageVersionProperty::ArpMinVersion:
return LocIndString{ VersionManifest.GetArpVersionRange().IsEmpty() ? "" : VersionManifest.GetArpVersionRange().GetMinVersion().ToString() };
case PackageVersionProperty::ArpMaxVersion:
return LocIndString{ VersionManifest.GetArpVersionRange().IsEmpty() ? "" : VersionManifest.GetArpVersionRange().GetMaxVersion().ToString() };
default:
return {};
}
}
std::vector<TestPackageVersion::LocIndString> TestPackageVersion::GetMultiProperty(PackageVersionMultiProperty property) const
{
std::vector<LocIndString> result;
switch (property)
{
case PackageVersionMultiProperty::PackageFamilyName:
if (!HideSystemReferenceStrings)
{
for (const auto& installer : VersionManifest.Installers)
{
AddIfHasValueAndNotPresent(installer.PackageFamilyName, result, true);
}
}
break;
case PackageVersionMultiProperty::ProductCode:
if (!HideSystemReferenceStrings)
{
for (const auto& installer : VersionManifest.Installers)
{
bool shouldFoldCaseForNonPortable = installer.EffectiveInstallerType() != AppInstaller::Manifest::InstallerTypeEnum::Portable;
AddIfHasValueAndNotPresent(installer.ProductCode, result, shouldFoldCaseForNonPortable);
}
}
break;
case PackageVersionMultiProperty::Name:
for (auto name : VersionManifest.GetPackageNames())
{
result.emplace_back(std::move(name));
}
break;
case PackageVersionMultiProperty::Publisher:
for (auto publisher : VersionManifest.GetPublishers())
{
result.emplace_back(std::move(publisher));
}
break;
case PackageVersionMultiProperty::Locale:
result.emplace_back(VersionManifest.DefaultLocalization.Locale);
for (const auto& loc : VersionManifest.Localizations)
{
result.emplace_back(loc.Locale);
}
break;
}
return result;
}
TestPackageVersion::Manifest TestPackageVersion::GetManifest()
{
return VersionManifest;
}
Repository::Source TestPackageVersion::GetSource() const
{
return std::const_pointer_cast<TestPackageVersion::ISource>(Source.lock());
}
TestPackageVersion::MetadataMap TestPackageVersion::GetMetadata() const
{
return Metadata;
}
void TestPackageVersion::AddIfHasValueAndNotPresent(const Utility::NormalizedString& value, std::vector<LocIndString>& target, bool folded)
{
if (!value.empty())
{
std::string valueString = folded ? FoldCase(value) : value;
auto itr = std::find(target.begin(), target.end(), valueString);
if (itr == target.end())
{
target.emplace_back(std::move(valueString));
}
}
}
TestPackage::TestPackage(const std::vector<Manifest>& available, std::weak_ptr<const ISource> source, bool hideSystemReferenceStringsOnVersion) :
Source(source)
{
DefaultIsSameIdentity = GetNextTestPackageId();
for (const auto& manifest : available)
{
Versions.emplace_back(TestPackageVersion::Make(manifest, source, hideSystemReferenceStringsOnVersion));
}
}
TestPackage::TestPackage(const Manifest& installed, MetadataMap installationMetadata, std::weak_ptr<const ISource> source) :
Source(source)
{
DefaultIsSameIdentity = GetNextTestPackageId();
Versions.emplace_back(TestPackageVersion::Make(installed, std::move(installationMetadata), source));
}
TestPackage::LocIndString TestPackage::GetProperty(PackageProperty property) const
{
std::shared_ptr<IPackageVersion> truth;
if (!Versions.empty())
{
truth = Versions[0];
}
if (!truth)
{
THROW_HR(E_NOT_VALID_STATE);
}
switch (property)
{
case PackageProperty::Id:
return truth->GetProperty(PackageVersionProperty::Id);
case PackageProperty::Name:
return truth->GetProperty(PackageVersionProperty::Name);
default:
return {};
}
}
std::vector<PackageVersionKey> TestPackage::GetVersionKeys() const
{
std::vector<PackageVersionKey> result;
for (const auto& version : Versions)
{
result.emplace_back(PackageVersionKey(version->GetSource().GetIdentifier(), version->GetProperty(PackageVersionProperty::Version).get(), version->GetProperty(PackageVersionProperty::Channel).get()));
}
return result;
}
std::shared_ptr<IPackageVersion> TestPackage::GetLatestVersion() const
{
if (Versions.empty())
{
return {};
}
return Versions[0];
}
std::shared_ptr<IPackageVersion> TestPackage::GetVersion(const PackageVersionKey& versionKey) const
{
for (const auto& version : Versions)
{
if ((versionKey.Version.empty() || versionKey.Version == version->GetProperty(PackageVersionProperty::Version).get()) &&
(versionKey.Channel.empty() || versionKey.Channel == version->GetProperty(PackageVersionProperty::Channel).get()))
{
return version;
}
}
return {};
}
Repository::Source TestPackage::GetSource() const
{
return std::const_pointer_cast<TestPackage::ISource>(Source.lock());
}
bool TestPackage::IsSame(const IPackage* other) const
{
if (IsSameOverride)
{
return IsSameOverride(this, other);
}
const TestPackage* otherPackage = PackageCast<const TestPackage*>(other);
if (otherPackage && DefaultIsSameIdentity == otherPackage->DefaultIsSameIdentity)
{
return true;
}
return false;
}
const void* TestPackage::CastTo(IPackageType type) const
{
if (type == PackageType)
{
return this;
}
return nullptr;
}
TestCompositePackage::TestCompositePackage(const std::vector<Manifest>& available, std::weak_ptr<const ISource> source, bool hideSystemReferenceStringsOnVersion)
{
if (!available.empty())
{
Available.emplace_back(TestPackage::Make(available, source, hideSystemReferenceStringsOnVersion));
}
}
TestCompositePackage::TestCompositePackage(const Manifest& installed, MetadataMap installationMetadata, const std::vector<Manifest>& available, std::weak_ptr<const ISource> source) :
Installed(TestPackage::Make(installed, std::move(installationMetadata), source))
{
if (!available.empty())
{
Available.emplace_back(TestPackage::Make(available, source));
}
}
TestCompositePackage::LocIndString TestCompositePackage::GetProperty(PackageProperty property) const
{
std::shared_ptr<IPackage> truth;
if (!Available.empty())
{
truth = Available[0];
}
else
{
truth = Installed;
}
if (!truth)
{
THROW_HR(E_NOT_VALID_STATE);
}
switch (property)
{
case PackageProperty::Id:
return truth->GetProperty(PackageProperty::Id);
case PackageProperty::Name:
return truth->GetProperty(PackageProperty::Name);
default:
return {};
}
}
std::shared_ptr<AppInstaller::Repository::IPackage> TestCompositePackage::GetInstalled()
{
return Installed;
}
std::vector<std::shared_ptr<AppInstaller::Repository::IPackage>> TestCompositePackage::GetAvailable()
{
return { Available.begin(), Available.end() };
}
const SourceDetails& TestSource::GetDetails() const
{
return Details;
}
const std::string& TestSource::GetIdentifier() const
{
return Details.Identifier;
}
SourceInformation TestSource::GetInformation() const
{
return Information;
}
bool TestSource::QueryFeatureFlag(SourceFeatureFlag flag) const
{
return (QueryFeatureFlagFunction ? QueryFeatureFlagFunction(flag) : false);
}
SearchResult TestSource::Search(const SearchRequest& request) const
{
if (SearchFunction)
{
return SearchFunction(request);
}
else
{
return {};
}
}
void* TestSource::CastTo(AppInstaller::Repository::ISourceType type)
{
if (type == SourceType)
{
return this;
}
return nullptr;
}
std::string_view TestSourceFactory::TypeName() const
{
return "*TestSource"sv;
}
std::shared_ptr<ISourceReference> TestSourceFactory::Create(const SourceDetails& details)
{
std::shared_ptr<TestSourceReference> result;
if (OnOpenWithCustomHeader)
{
result = std::make_shared<TestSourceReference>(details, OnOpenWithCustomHeader);
}
else
{
result = std::make_shared<TestSourceReference>(details, OnOpen);
}
result->ShouldUpdateBeforeOpenResult = ShouldUpdateBeforeOpenResult;
return result;
}
bool TestSourceFactory::Add(SourceDetails& details, IProgressCallback&)
{
if (OnAdd)
{
OnAdd(details);
}
return true;
}
bool TestSourceFactory::Update(const SourceDetails& details, IProgressCallback&)
{
if (OnUpdate)
{
OnUpdate(details);
}
return true;
}
bool TestSourceFactory::Remove(const SourceDetails& details, IProgressCallback&)
{
if (OnRemove)
{
OnRemove(details);
}
return true;
}
// Make copies of self when requested.
TestSourceFactory::operator std::function<std::unique_ptr<ISourceFactory>()>()
{
return [this]() { return std::make_unique<TestSourceFactory>(*this); };
}
bool AddSource(const AppInstaller::Repository::SourceDetails& details, AppInstaller::IProgressCallback& progress)
{
Repository::Source source{ details.Name, details.Arg, details.Type, Repository::SourceTrustLevel::None, false };
return source.Add(progress);
}
bool UpdateSource(std::string_view name, AppInstaller::IProgressCallback& progress)
{
Repository::Source source{ name };
return source.Update(progress).empty();
}
bool RemoveSource(std::string_view name, AppInstaller::IProgressCallback& progress)
{
Repository::Source source{ name };
return source.Remove(progress);
}
std::vector<AppInstaller::Repository::SourceDetails> GetSources()
{
return Repository::Source::GetCurrentSources();
}
AppInstaller::Repository::Source OpenSource(std::string_view name, AppInstaller::IProgressCallback& progress)
{
Repository::Source source{ name };
source.Open(progress);
return source;
}
void DropSource(std::string_view name)
{
Source::DropSource(name);
}
}