dependabot-nuget 0.294.0 → 0.296.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Discover/DiscoveryWorker.cs +2 -1
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Discover/SdkProjectDiscovery.cs +1 -1
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/ExperimentsManager.cs +6 -2
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Run/RunWorker.cs +165 -123
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/PackageReferenceUpdater.cs +1 -1
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/PackagesConfigUpdater.cs +3 -6
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Utilities/MSBuildHelper.cs +43 -18
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/RunWorkerTests.cs +338 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/SerializationTests.cs +30 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/UpdateAllowedTests.cs +286 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/UpdatedDependencyListTests.cs +9 -1
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Utilities/MSBuildHelperTests.cs +112 -2
- metadata +6 -5
@@ -1,7 +1,8 @@
|
|
1
1
|
using System.Collections.Immutable;
|
2
|
+
using System.Text.Json;
|
2
3
|
|
3
|
-
using
|
4
|
-
|
4
|
+
using NuGetUpdater.Core.Run;
|
5
|
+
using NuGetUpdater.Core.Run.ApiModel;
|
5
6
|
using NuGetUpdater.Core.Test.Update;
|
6
7
|
|
7
8
|
using Xunit;
|
@@ -1366,6 +1367,115 @@ public class MSBuildHelperTests : TestBase
|
|
1366
1367
|
}
|
1367
1368
|
#endregion
|
1368
1369
|
|
1370
|
+
[Theory]
|
1371
|
+
[MemberData(nameof(GenerateErrorFromToolOutputTestData))]
|
1372
|
+
public async Task GenerateErrorFromToolOutput(string output, JobErrorBase? expectedError)
|
1373
|
+
{
|
1374
|
+
Exception? exception = null;
|
1375
|
+
try
|
1376
|
+
{
|
1377
|
+
MSBuildHelper.ThrowOnError(output);
|
1378
|
+
}
|
1379
|
+
catch (Exception ex)
|
1380
|
+
{
|
1381
|
+
exception = ex;
|
1382
|
+
}
|
1383
|
+
|
1384
|
+
if (expectedError is null)
|
1385
|
+
{
|
1386
|
+
Assert.Null(exception);
|
1387
|
+
}
|
1388
|
+
else
|
1389
|
+
{
|
1390
|
+
Assert.NotNull(exception);
|
1391
|
+
using var tempDir = await TemporaryDirectory.CreateWithContentsAsync([("NuGet.Config", """
|
1392
|
+
<configuration>
|
1393
|
+
<packageSources>
|
1394
|
+
<clear />
|
1395
|
+
<add key="test-feed" value="http://localhost/test-feed" />
|
1396
|
+
</packageSources>
|
1397
|
+
</configuration>
|
1398
|
+
""")]);
|
1399
|
+
var actualError = JobErrorBase.ErrorFromException(exception, "TEST-JOB-ID", tempDir.DirectoryPath);
|
1400
|
+
if (actualError is DependencyFileNotFound notFound)
|
1401
|
+
{
|
1402
|
+
// normalize default message for the test
|
1403
|
+
actualError = new DependencyFileNotFound(notFound.Details["file-path"].ToString()!, "test message");
|
1404
|
+
}
|
1405
|
+
|
1406
|
+
var actualErrorJson = JsonSerializer.Serialize(actualError, RunWorker.SerializerOptions);
|
1407
|
+
var expectedErrorJson = JsonSerializer.Serialize(expectedError, RunWorker.SerializerOptions);
|
1408
|
+
Assert.Equal(expectedErrorJson, actualErrorJson);
|
1409
|
+
}
|
1410
|
+
}
|
1411
|
+
|
1412
|
+
public static IEnumerable<object?[]> GenerateErrorFromToolOutputTestData()
|
1413
|
+
{
|
1414
|
+
yield return
|
1415
|
+
[
|
1416
|
+
// output
|
1417
|
+
"Everything was good.",
|
1418
|
+
// expectedError
|
1419
|
+
null,
|
1420
|
+
];
|
1421
|
+
|
1422
|
+
yield return
|
1423
|
+
[
|
1424
|
+
// output
|
1425
|
+
"Response status code does not indicate success: 403",
|
1426
|
+
// expectedError
|
1427
|
+
new PrivateSourceAuthenticationFailure(["http://localhost/test-feed"]),
|
1428
|
+
];
|
1429
|
+
|
1430
|
+
yield return
|
1431
|
+
[
|
1432
|
+
// output
|
1433
|
+
"The imported file \"some.file\" does not exist",
|
1434
|
+
// expectedError
|
1435
|
+
new DependencyFileNotFound("some.file", "test message"),
|
1436
|
+
];
|
1437
|
+
|
1438
|
+
yield return
|
1439
|
+
[
|
1440
|
+
// output
|
1441
|
+
"Package 'Some.Package' is not found on source",
|
1442
|
+
// expectedError
|
1443
|
+
new UpdateNotPossible(["Some.Package"]),
|
1444
|
+
];
|
1445
|
+
|
1446
|
+
yield return
|
1447
|
+
[
|
1448
|
+
// output
|
1449
|
+
"Unable to resolve dependencies. 'Some.Package 1.2.3' is not compatible with",
|
1450
|
+
// expectedError
|
1451
|
+
new UpdateNotPossible(["Some.Package.1.2.3"]),
|
1452
|
+
];
|
1453
|
+
|
1454
|
+
yield return
|
1455
|
+
[
|
1456
|
+
// output
|
1457
|
+
"Could not install package 'Some.Package 1.2.3'. You are trying to install this package into a project that targets 'SomeFramework'",
|
1458
|
+
// expectedError
|
1459
|
+
new UpdateNotPossible(["Some.Package.1.2.3"]),
|
1460
|
+
];
|
1461
|
+
|
1462
|
+
yield return
|
1463
|
+
[
|
1464
|
+
// output
|
1465
|
+
"Unable to find a version of 'Some.Package' that is compatible with 'Some.Other.Package 4.5.6 constraint: Some.Package (>= 1.2.3)'",
|
1466
|
+
// expectedError
|
1467
|
+
new UpdateNotPossible(["Some.Package.1.2.3"]),
|
1468
|
+
];
|
1469
|
+
|
1470
|
+
yield return
|
1471
|
+
[
|
1472
|
+
// output
|
1473
|
+
"the following error(s) may be blocking the current package operation: 'Some.Package 1.2.3 constraint: Some.Other.Package (>= 4.5.6)'",
|
1474
|
+
// expectedError
|
1475
|
+
new UpdateNotPossible(["Some.Package.1.2.3"]),
|
1476
|
+
];
|
1477
|
+
}
|
1478
|
+
|
1369
1479
|
public static IEnumerable<object[]> GetTopLevelPackageDependencyInfosTestData()
|
1370
1480
|
{
|
1371
1481
|
// simple case
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dependabot-nuget
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.296.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dependabot-common
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.296.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.296.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubyzip
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -351,6 +351,7 @@ files:
|
|
351
351
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/RunWorkerTests.cs
|
352
352
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/SerializationTests.cs
|
353
353
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/TestApiHandler.cs
|
354
|
+
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/UpdateAllowedTests.cs
|
354
355
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/UpdatedDependencyListTests.cs
|
355
356
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/TemporaryDirectory.cs
|
356
357
|
- helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/TemporaryEnvironment.cs
|
@@ -528,7 +529,7 @@ licenses:
|
|
528
529
|
- MIT
|
529
530
|
metadata:
|
530
531
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
531
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
532
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.296.0
|
532
533
|
post_install_message:
|
533
534
|
rdoc_options: []
|
534
535
|
require_paths:
|