Skip to content

Commit d9a5765

Browse files
authored
Add argument for ignoring warnings (#3572)
1 parent 96e931e commit d9a5765

File tree

8 files changed

+45
-9
lines changed

8 files changed

+45
-9
lines changed

.github/actions/spelling/allow.txt

+1
Original file line numberDiff line numberDiff line change
@@ -355,6 +355,7 @@ normalizedpackagenameandpublisher
355355
NOTHROW
356356
NOTIMPL
357357
NOTNULL
358+
nowarn
358359
npos
359360
NTFS
360361
NTSTATUS

src/AppInstallerCLICore/Argument.cpp

+4
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,8 @@ namespace AppInstaller::CLI
119119
//Validate Command
120120
case Execution::Args::Type::ValidateManifest:
121121
return { type, "manifest"_liv };
122+
case Execution::Args::Type::IgnoreWarnings:
123+
return { type, "ignore-warnings"_liv, "nowarn"_liv};
122124

123125
// Complete Command
124126
case Execution::Args::Type::Word:
@@ -313,6 +315,8 @@ namespace AppInstaller::CLI
313315
return Argument{ type, Resource::String::SourceTypeArgumentDescription, ArgumentType::Positional };
314316
case Args::Type::ValidateManifest:
315317
return Argument{ type, Resource::String::ValidateManifestArgumentDescription, ArgumentType::Positional, true };
318+
case Args::Type::IgnoreWarnings:
319+
return Argument{ type, Resource::String::IgnoreWarningsArgumentDescription, ArgumentType::Flag, Argument::Visibility::Help };
316320
case Args::Type::NoVT:
317321
return Argument{ type, Resource::String::NoVTArgumentDescription, ArgumentType::Flag, Argument::Visibility::Hidden };
318322
case Args::Type::RainbowStyle:

src/AppInstallerCLICore/Commands/ValidateCommand.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ namespace AppInstaller::CLI
1616
{
1717
return {
1818
Argument::ForType(Execution::Args::Type::ValidateManifest),
19+
Argument::ForType(Execution::Args::Type::IgnoreWarnings),
1920
};
2021
}
2122

@@ -46,7 +47,7 @@ namespace AppInstaller::CLI
4647
{
4748
ManifestValidateOption validateOption;
4849
validateOption.FullValidation = true;
49-
validateOption.ThrowOnWarning = true;
50+
validateOption.ThrowOnWarning = !(context.Args.Contains(Execution::Args::Type::IgnoreWarnings));
5051
auto manifest = YamlParser::CreateFromPath(inputFile, validateOption);
5152

5253
context.Add<Execution::Data::Manifest>(manifest);

src/AppInstallerCLICore/ExecutionArgs.h

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ namespace AppInstaller::CLI::Execution
6666

6767
//Validate Command
6868
ValidateManifest,
69+
IgnoreWarnings,
6970

7071
// Complete Command
7172
Word,

src/AppInstallerCLICore/Resources.h

+1
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,7 @@ namespace AppInstaller::CLI::Resource
207207
WINGET_DEFINE_RESOURCE_STRINGID(HelpLinkPreamble);
208208
WINGET_DEFINE_RESOURCE_STRINGID(IdArgumentDescription);
209209
WINGET_DEFINE_RESOURCE_STRINGID(IgnoreLocalArchiveMalwareScanArgumentDescription);
210+
WINGET_DEFINE_RESOURCE_STRINGID(IgnoreWarningsArgumentDescription);
210211
WINGET_DEFINE_RESOURCE_STRINGID(ImportCommandLongDescription);
211212
WINGET_DEFINE_RESOURCE_STRINGID(ImportCommandReportDependencies);
212213
WINGET_DEFINE_RESOURCE_STRINGID(ImportCommandShortDescription);
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
Id: TestWarning.Manifest
2-
Name: TestWarningManifest
3-
Version: 1.0.0.0
1+
PackageIdentifier: TestWarning.Manifest
2+
PackageName: TestWarningManifest
3+
PackageVersion: 1.0.0.0
4+
PackageLocale: en-US
45
Publisher: AppInstallerTest
56
License: Test
67
Installers:
7-
- Arch: x86
8-
Url: https://localhost:5001/TestKit/AppInstallerTestExeInstaller/AppInstallerTestExeInstaller.exe
9-
Sha256: <EXEHASH>
8+
- Architecture: x86
9+
InstallerUrl: https://localhost:5001/TestKit/AppInstallerTestExeInstaller/AppInstallerTestExeInstaller.exe
10+
InstallerSha256: 0000000000000000000000000000000000000000000000000000000000000000
1011
InstallerType: exe
11-
Switches:
12-
ManifestVersion: 0.1.0
12+
ShortDescription: This manifest should have only warnings, no errors
13+
ManifestType: singleton
14+
ManifestVersion: 1.6.0

src/AppInstallerCLIE2ETests/ValidateCommand.cs

+23
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,29 @@ public void ValidateInvalidManifest()
4747
Assert.True(result.StdOut.Contains("Manifest validation failed."));
4848
}
4949

50+
/// <summary>
51+
/// Test validate manifest with warnings.
52+
/// </summary>
53+
[Test]
54+
public void ValidateManifestWithWarnings()
55+
{
56+
var result = TestCommon.RunAICLICommand("validate", TestCommon.GetTestDataFile("Manifests\\TestWarningManifest.yaml"));
57+
Assert.AreEqual(Constants.ErrorCode.ERROR_MANIFEST_VALIDATION_WARNING, result.ExitCode);
58+
Assert.True(result.StdOut.Contains("Manifest validation succeeded with warnings."));
59+
}
60+
61+
/// <summary>
62+
/// Test validate manifest with warnings suppressed.
63+
/// </summary>
64+
[Test]
65+
public void ValidateManifestSuppressWarnings()
66+
{
67+
var result = TestCommon.RunAICLICommand("validate", TestCommon.GetTestDataFile("Manifests\\TestWarningManifest.yaml") + " --ignore-warnings");
68+
Assert.AreEqual(Constants.ErrorCode.S_OK, result.ExitCode);
69+
Assert.False(result.StdOut.Contains("Manifest validation succeeded with warnings."));
70+
Assert.True(result.StdOut.Contains("Manifest validation succeeded."));
71+
}
72+
5073
/// <summary>
5174
/// Test validate manifest that doesn't exist.
5275
/// </summary>

src/AppInstallerCLIPackage/Shared/Strings/en-us/winget.resw

+3
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,9 @@ They can be configured through the settings file 'winget settings'.</value>
261261
<data name="IdArgumentDescription" xml:space="preserve">
262262
<value>Filter results by id</value>
263263
</data>
264+
<data name="IgnoreWarningsArgumentDescription" xml:space="preserve">
265+
<value>Suppresses warning outputs.</value>
266+
</data>
264267
<data name="InstallationDisclaimer1" xml:space="preserve">
265268
<value>This application is licensed to you by its owner.</value>
266269
</data>

0 commit comments

Comments
 (0)