dependabot-nuget 0.302.0 → 0.303.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/Directory.Packages.props +5 -5
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/DependencyDiscoveryTargetingPacks.props +10 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Discover/DiscoveryWorker.cs +96 -97
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Discover/SdkProjectDiscovery.cs +2 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/ExperimentsManager.cs +3 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/NuGetUpdater.Core.csproj +1 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Run/RunWorker.cs +8 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/BindingRedirectManager.cs +7 -4
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/LockFileUpdater.cs +2 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/PackageReferenceUpdater.cs +257 -37
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/PackagesConfigUpdater.cs +12 -3
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/UpdateOperationBase.cs +209 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/UpdateOperationResult.cs +3 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Updater/UpdaterWorker.cs +79 -24
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core/Utilities/MSBuildHelper.cs +11 -11
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Discover/DiscoveryWorkerTests.PackagesConfig.cs +19 -5
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Run/RunWorkerTests.cs +24 -6
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/PackageReferenceUpdaterTests.cs +177 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateOperationBaseTests.cs +130 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateWorkerTestBase.cs +5 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateWorkerTests.Mixed.cs +71 -5
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateWorkerTests.PackageReference.cs +87 -3
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateWorkerTests.PackagesConfig.cs +23 -0
- data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Utilities/MSBuildHelperTests.cs +145 -147
- metadata +11 -7
@@ -106,7 +106,10 @@ public class RunWorkerTests
|
|
106
106
|
</ItemGroup>
|
107
107
|
</Project>
|
108
108
|
""".SetEOL(EOL));
|
109
|
-
return new UpdateOperationResult()
|
109
|
+
return new UpdateOperationResult()
|
110
|
+
{
|
111
|
+
UpdateOperations = [],
|
112
|
+
};
|
110
113
|
}),
|
111
114
|
expectedResult: new RunResult()
|
112
115
|
{
|
@@ -314,7 +317,10 @@ public class RunWorkerTests
|
|
314
317
|
</ItemGroup>
|
315
318
|
</Project>
|
316
319
|
""".SetEOL(EOL));
|
317
|
-
return new UpdateOperationResult()
|
320
|
+
return new UpdateOperationResult()
|
321
|
+
{
|
322
|
+
UpdateOperations = [],
|
323
|
+
};
|
318
324
|
}),
|
319
325
|
expectedResult: new RunResult()
|
320
326
|
{
|
@@ -681,7 +687,10 @@ public class RunWorkerTests
|
|
681
687
|
throw new NotSupportedException();
|
682
688
|
}
|
683
689
|
|
684
|
-
return new UpdateOperationResult()
|
690
|
+
return new UpdateOperationResult()
|
691
|
+
{
|
692
|
+
UpdateOperations = [],
|
693
|
+
};
|
685
694
|
}),
|
686
695
|
expectedResult: new RunResult()
|
687
696
|
{
|
@@ -1091,7 +1100,10 @@ public class RunWorkerTests
|
|
1091
1100
|
throw new NotSupportedException();
|
1092
1101
|
}
|
1093
1102
|
|
1094
|
-
return new UpdateOperationResult()
|
1103
|
+
return new UpdateOperationResult()
|
1104
|
+
{
|
1105
|
+
UpdateOperations = [],
|
1106
|
+
};
|
1095
1107
|
}),
|
1096
1108
|
expectedResult: new RunResult()
|
1097
1109
|
{
|
@@ -1553,7 +1565,10 @@ public class RunWorkerTests
|
|
1553
1565
|
</PropertyGroup>
|
1554
1566
|
</Project>
|
1555
1567
|
""".SetEOL(EOL));
|
1556
|
-
return new UpdateOperationResult()
|
1568
|
+
return new UpdateOperationResult()
|
1569
|
+
{
|
1570
|
+
UpdateOperations = [],
|
1571
|
+
};
|
1557
1572
|
}),
|
1558
1573
|
expectedResult: new RunResult()
|
1559
1574
|
{
|
@@ -2316,7 +2331,10 @@ public class RunWorkerTests
|
|
2316
2331
|
_ => throw new NotImplementedException("unreachable")
|
2317
2332
|
};
|
2318
2333
|
await File.WriteAllTextAsync(dependencyFilePath, updatedContent);
|
2319
|
-
return new UpdateOperationResult()
|
2334
|
+
return new UpdateOperationResult()
|
2335
|
+
{
|
2336
|
+
UpdateOperations = [],
|
2337
|
+
};
|
2320
2338
|
}),
|
2321
2339
|
expectedResult: new()
|
2322
2340
|
{
|
@@ -0,0 +1,177 @@
|
|
1
|
+
using System.Collections.Immutable;
|
2
|
+
|
3
|
+
using NuGet.Versioning;
|
4
|
+
|
5
|
+
using NuGetUpdater.Core.Test.Utilities;
|
6
|
+
using NuGetUpdater.Core.Updater;
|
7
|
+
|
8
|
+
using Xunit;
|
9
|
+
|
10
|
+
namespace NuGetUpdater.Core.Test.Update;
|
11
|
+
|
12
|
+
public class PackageReferenceUpdaterTests
|
13
|
+
{
|
14
|
+
[Theory]
|
15
|
+
[MemberData(nameof(ComputeUpdateOperationsTestData))]
|
16
|
+
public async Task ComputeUpdateOperations
|
17
|
+
(
|
18
|
+
ImmutableArray<Dependency> topLevelDependencies,
|
19
|
+
ImmutableArray<Dependency> requestedUpdates,
|
20
|
+
ImmutableArray<Dependency> resolvedDependencies,
|
21
|
+
ImmutableArray<UpdateOperationBase> expectedUpdateOperations
|
22
|
+
)
|
23
|
+
{
|
24
|
+
// arrange
|
25
|
+
using var repoRoot = await TemporaryDirectory.CreateWithContentsAsync(("project.csproj", "<Project Sdk=\"Microsoft.NET.Sdk\" />"));
|
26
|
+
var projectPath = Path.Combine(repoRoot.DirectoryPath, "project.csproj");
|
27
|
+
var experimentsManager = new ExperimentsManager() { UseDirectDiscovery = true };
|
28
|
+
await UpdateWorkerTestBase.MockNuGetPackagesInDirectory([
|
29
|
+
MockNuGetPackage.CreateSimplePackage("Parent.Package", "1.0.0", "net9.0", [(null, [("Transitive.Package", "1.0.0")])]),
|
30
|
+
MockNuGetPackage.CreateSimplePackage("Parent.Package", "2.0.0", "net9.0", [(null, [("Transitive.Package", "2.0.0")])]),
|
31
|
+
MockNuGetPackage.CreateSimplePackage("Transitive.Package", "1.0.0", "net9.0", [(null, [("Super.Transitive.Package", "1.0.0")])]),
|
32
|
+
MockNuGetPackage.CreateSimplePackage("Transitive.Package", "2.0.0", "net9.0", [(null, [("Super.Transitive.Package", "2.0.0")])]),
|
33
|
+
MockNuGetPackage.CreateSimplePackage("Super.Transitive.Package", "1.0.0", "net9.0"),
|
34
|
+
MockNuGetPackage.CreateSimplePackage("Super.Transitive.Package", "2.0.0", "net9.0")
|
35
|
+
], repoRoot.DirectoryPath);
|
36
|
+
|
37
|
+
// act
|
38
|
+
var actualUpdateOperations = await PackageReferenceUpdater.ComputeUpdateOperations(
|
39
|
+
repoRoot.DirectoryPath,
|
40
|
+
projectPath,
|
41
|
+
"net9.0",
|
42
|
+
topLevelDependencies,
|
43
|
+
requestedUpdates,
|
44
|
+
resolvedDependencies,
|
45
|
+
experimentsManager,
|
46
|
+
new TestLogger());
|
47
|
+
|
48
|
+
// assert
|
49
|
+
AssertEx.Equal(expectedUpdateOperations, actualUpdateOperations);
|
50
|
+
}
|
51
|
+
|
52
|
+
public static IEnumerable<object[]> ComputeUpdateOperationsTestData()
|
53
|
+
{
|
54
|
+
// single dependency update
|
55
|
+
yield return
|
56
|
+
[
|
57
|
+
// topLevelDependencies
|
58
|
+
ImmutableArray.Create(
|
59
|
+
new Dependency("Some.Package", "1.0.0", DependencyType.PackageReference),
|
60
|
+
new Dependency("Unrelated.Package", "2.0.0", DependencyType.PackageReference)
|
61
|
+
),
|
62
|
+
|
63
|
+
// requestedUpdates
|
64
|
+
ImmutableArray.Create(
|
65
|
+
new Dependency("Some.Package", "1.0.1", DependencyType.PackageReference)
|
66
|
+
),
|
67
|
+
|
68
|
+
// resolvedDependencies
|
69
|
+
ImmutableArray.Create(
|
70
|
+
new Dependency("Some.Package", "1.0.1", DependencyType.PackageReference),
|
71
|
+
new Dependency("Unrelated.Package", "2.0.0", DependencyType.PackageReference)
|
72
|
+
),
|
73
|
+
|
74
|
+
// expectedUpdateOperations
|
75
|
+
ImmutableArray.Create<UpdateOperationBase>(
|
76
|
+
new DirectUpdate()
|
77
|
+
{
|
78
|
+
DependencyName = "Some.Package",
|
79
|
+
NewVersion = NuGetVersion.Parse("1.0.1"),
|
80
|
+
UpdatedFiles = [],
|
81
|
+
}
|
82
|
+
)
|
83
|
+
];
|
84
|
+
|
85
|
+
// dependency was updated by pinning
|
86
|
+
yield return
|
87
|
+
[
|
88
|
+
// topLevelDependencies
|
89
|
+
ImmutableArray.Create(
|
90
|
+
new Dependency("Top.Level.Package", "1.0.0", DependencyType.PackageReference)
|
91
|
+
),
|
92
|
+
|
93
|
+
// requestedUpdates
|
94
|
+
ImmutableArray.Create(
|
95
|
+
new Dependency("Transitive.Package", "2.0.0", DependencyType.PackageReference)
|
96
|
+
),
|
97
|
+
|
98
|
+
// resolvedDependencies
|
99
|
+
ImmutableArray.Create(
|
100
|
+
new Dependency("Top.Level.Package", "1.0.0", DependencyType.PackageReference),
|
101
|
+
new Dependency("Transitive.Package", "2.0.0", DependencyType.PackageReference)
|
102
|
+
),
|
103
|
+
|
104
|
+
// expectedUpdateOperations
|
105
|
+
ImmutableArray.Create<UpdateOperationBase>(
|
106
|
+
new PinnedUpdate()
|
107
|
+
{
|
108
|
+
DependencyName = "Transitive.Package",
|
109
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
110
|
+
UpdatedFiles = [],
|
111
|
+
}
|
112
|
+
)
|
113
|
+
];
|
114
|
+
|
115
|
+
// dependency was updated by updating parent 1 level up
|
116
|
+
yield return
|
117
|
+
[
|
118
|
+
// topLevelDependencies
|
119
|
+
ImmutableArray.Create(
|
120
|
+
new Dependency("Parent.Package", "1.0.0", DependencyType.PackageReference)
|
121
|
+
),
|
122
|
+
|
123
|
+
// requestedUpdates
|
124
|
+
ImmutableArray.Create(
|
125
|
+
new Dependency("Transitive.Package", "2.0.0", DependencyType.PackageReference)
|
126
|
+
),
|
127
|
+
|
128
|
+
// resolvedDependencies
|
129
|
+
ImmutableArray.Create(
|
130
|
+
new Dependency("Parent.Package", "2.0.0", DependencyType.PackageReference)
|
131
|
+
),
|
132
|
+
|
133
|
+
// expectedUpdateOperations
|
134
|
+
ImmutableArray.Create<UpdateOperationBase>(
|
135
|
+
new ParentUpdate()
|
136
|
+
{
|
137
|
+
DependencyName = "Transitive.Package",
|
138
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
139
|
+
UpdatedFiles = [],
|
140
|
+
ParentDependencyName = "Parent.Package",
|
141
|
+
ParentNewVersion = NuGetVersion.Parse("2.0.0"),
|
142
|
+
}
|
143
|
+
)
|
144
|
+
];
|
145
|
+
|
146
|
+
// dependency was updated by updating parent 2 levels up
|
147
|
+
yield return
|
148
|
+
[
|
149
|
+
// topLevelDependencies
|
150
|
+
ImmutableArray.Create(
|
151
|
+
new Dependency("Parent.Package", "1.0.0", DependencyType.PackageReference)
|
152
|
+
),
|
153
|
+
|
154
|
+
// requestedUpdates
|
155
|
+
ImmutableArray.Create(
|
156
|
+
new Dependency("Super.Transitive.Package", "2.0.0", DependencyType.PackageReference)
|
157
|
+
),
|
158
|
+
|
159
|
+
// resolvedDependencies
|
160
|
+
ImmutableArray.Create(
|
161
|
+
new Dependency("Parent.Package", "2.0.0", DependencyType.PackageReference)
|
162
|
+
),
|
163
|
+
|
164
|
+
// expectedUpdateOperations
|
165
|
+
ImmutableArray.Create<UpdateOperationBase>(
|
166
|
+
new ParentUpdate()
|
167
|
+
{
|
168
|
+
DependencyName = "Super.Transitive.Package",
|
169
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
170
|
+
UpdatedFiles = [],
|
171
|
+
ParentDependencyName = "Parent.Package",
|
172
|
+
ParentNewVersion = NuGetVersion.Parse("2.0.0"),
|
173
|
+
}
|
174
|
+
)
|
175
|
+
];
|
176
|
+
}
|
177
|
+
}
|
@@ -0,0 +1,130 @@
|
|
1
|
+
using NuGet.Versioning;
|
2
|
+
|
3
|
+
using NuGetUpdater.Core.Test.Utilities;
|
4
|
+
using NuGetUpdater.Core.Updater;
|
5
|
+
|
6
|
+
using Xunit;
|
7
|
+
|
8
|
+
namespace NuGetUpdater.Core.Test.Update;
|
9
|
+
|
10
|
+
public class UpdateOperationBaseTests
|
11
|
+
{
|
12
|
+
[Fact]
|
13
|
+
public void GetReport()
|
14
|
+
{
|
15
|
+
// arrange
|
16
|
+
var updateOperations = new UpdateOperationBase[]
|
17
|
+
{
|
18
|
+
new DirectUpdate()
|
19
|
+
{
|
20
|
+
DependencyName = "Package.A",
|
21
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
22
|
+
UpdatedFiles = ["file/a.txt"]
|
23
|
+
},
|
24
|
+
new PinnedUpdate()
|
25
|
+
{
|
26
|
+
DependencyName = "Package.B",
|
27
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
28
|
+
UpdatedFiles = ["file/b.txt"]
|
29
|
+
},
|
30
|
+
new ParentUpdate()
|
31
|
+
{
|
32
|
+
DependencyName = "Package.C",
|
33
|
+
NewVersion = NuGetVersion.Parse("3.0.0"),
|
34
|
+
UpdatedFiles = ["file/c.txt"],
|
35
|
+
ParentDependencyName = "Package.D",
|
36
|
+
ParentNewVersion = NuGetVersion.Parse("4.0.0"),
|
37
|
+
},
|
38
|
+
};
|
39
|
+
|
40
|
+
// act
|
41
|
+
var actualReport = UpdateOperationBase.GenerateUpdateOperationReport(updateOperations);
|
42
|
+
|
43
|
+
// assert
|
44
|
+
var expectedReport = """
|
45
|
+
Performed the following updates:
|
46
|
+
- Updated Package.A to 1.0.0 in file/a.txt
|
47
|
+
- Pinned Package.B at 2.0.0 in file/b.txt
|
48
|
+
- Updated Package.C to 3.0.0 indirectly via Package.D/4.0.0 in file/c.txt
|
49
|
+
""".Replace("\r", "");
|
50
|
+
Assert.Equal(expectedReport, actualReport);
|
51
|
+
}
|
52
|
+
|
53
|
+
[Fact]
|
54
|
+
public void NormalizeUpdateOperationCollection_SortAndDistinct()
|
55
|
+
{
|
56
|
+
// arrange
|
57
|
+
var repoRootPath = "/repo/root";
|
58
|
+
var updateOperations = new UpdateOperationBase[]
|
59
|
+
{
|
60
|
+
new DirectUpdate()
|
61
|
+
{
|
62
|
+
DependencyName = "Dependency.Direct",
|
63
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
64
|
+
UpdatedFiles = ["/repo/root/file/a.txt"]
|
65
|
+
},
|
66
|
+
new PinnedUpdate()
|
67
|
+
{
|
68
|
+
DependencyName = "Dependency.Pinned",
|
69
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
70
|
+
UpdatedFiles = ["/repo/root/file/b.txt"]
|
71
|
+
},
|
72
|
+
// this is the same as the first item and will be removed
|
73
|
+
new DirectUpdate()
|
74
|
+
{
|
75
|
+
DependencyName = "Dependency.Direct",
|
76
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
77
|
+
UpdatedFiles = ["/repo/root/file/a.txt"]
|
78
|
+
},
|
79
|
+
new ParentUpdate()
|
80
|
+
{
|
81
|
+
DependencyName = "Dependency.Parent",
|
82
|
+
NewVersion = NuGetVersion.Parse("3.0.0"),
|
83
|
+
UpdatedFiles = ["/repo/root/file/c.txt"],
|
84
|
+
ParentDependencyName = "Dependency.Root",
|
85
|
+
ParentNewVersion = NuGetVersion.Parse("4.0.0"),
|
86
|
+
},
|
87
|
+
};
|
88
|
+
|
89
|
+
// act
|
90
|
+
var normalizedOperations = UpdateOperationBase.NormalizeUpdateOperationCollection(repoRootPath, updateOperations);
|
91
|
+
var normalizedDependencyNames = string.Join(", ", normalizedOperations.Select(o => o.DependencyName));
|
92
|
+
|
93
|
+
// assert
|
94
|
+
var expectedDependencyNames = "Dependency.Direct, Dependency.Parent, Dependency.Pinned";
|
95
|
+
Assert.Equal(expectedDependencyNames, normalizedDependencyNames);
|
96
|
+
}
|
97
|
+
|
98
|
+
[Fact]
|
99
|
+
public void NormalizeUpdateOperationCollection_CombinedOnTypeAndDependency()
|
100
|
+
{
|
101
|
+
// arrange
|
102
|
+
var repoRootPath = "/repo/root";
|
103
|
+
var updateOperations = new UpdateOperationBase[]
|
104
|
+
{
|
105
|
+
// both operations are the same type, same dependency, same version => files are combined
|
106
|
+
new DirectUpdate()
|
107
|
+
{
|
108
|
+
DependencyName = "Dependency.Direct",
|
109
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
110
|
+
UpdatedFiles = ["/repo/root/file/b.txt"]
|
111
|
+
},
|
112
|
+
new DirectUpdate()
|
113
|
+
{
|
114
|
+
DependencyName = "Dependency.Direct",
|
115
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
116
|
+
UpdatedFiles = ["/repo/root/file/a.txt"]
|
117
|
+
},
|
118
|
+
};
|
119
|
+
|
120
|
+
// act
|
121
|
+
var normalizedOperations = UpdateOperationBase.NormalizeUpdateOperationCollection(repoRootPath, updateOperations);
|
122
|
+
|
123
|
+
// assert
|
124
|
+
var singleUpdate = Assert.Single(normalizedOperations);
|
125
|
+
var directUpdate = Assert.IsType<DirectUpdate>(singleUpdate);
|
126
|
+
Assert.Equal("Dependency.Direct", directUpdate.DependencyName);
|
127
|
+
Assert.Equal(NuGetVersion.Parse("1.0.0"), directUpdate.NewVersion);
|
128
|
+
AssertEx.Equal(["/file/a.txt", "/file/b.txt"], directUpdate.UpdatedFiles);
|
129
|
+
}
|
130
|
+
}
|
@@ -3,6 +3,7 @@ using System.Text.Json;
|
|
3
3
|
using NuGetUpdater.Core.Run;
|
4
4
|
using NuGetUpdater.Core.Run.ApiModel;
|
5
5
|
using NuGetUpdater.Core.Test.Updater;
|
6
|
+
using NuGetUpdater.Core.Test.Utilities;
|
6
7
|
using NuGetUpdater.Core.Updater;
|
7
8
|
|
8
9
|
using Xunit;
|
@@ -191,6 +192,10 @@ public abstract class UpdateWorkerTestBase : TestBase
|
|
191
192
|
else
|
192
193
|
{
|
193
194
|
Assert.Null(actualResult.Error);
|
195
|
+
if (expectedResult is not null)
|
196
|
+
{
|
197
|
+
AssertEx.Equal(expectedResult.UpdateOperations, actualResult.UpdateOperations, UpdateOperationBaseComparer.Instance);
|
198
|
+
}
|
194
199
|
}
|
195
200
|
}
|
196
201
|
|
@@ -1,5 +1,7 @@
|
|
1
1
|
using System.Text.Json;
|
2
2
|
|
3
|
+
using NuGet.Versioning;
|
4
|
+
|
3
5
|
using NuGetUpdater.Core.Run.ApiModel;
|
4
6
|
using NuGetUpdater.Core.Updater;
|
5
7
|
|
@@ -12,16 +14,14 @@ public partial class UpdateWorkerTests
|
|
12
14
|
public class Mixed : UpdateWorkerTestBase
|
13
15
|
{
|
14
16
|
[Fact]
|
15
|
-
public
|
17
|
+
public void ResultFileHasCorrectShapeForAuthenticationFailure()
|
16
18
|
{
|
17
|
-
using var temporaryDirectory = await TemporaryDirectory.CreateWithContentsAsync([]);
|
18
19
|
var result = new UpdateOperationResult()
|
19
20
|
{
|
20
21
|
Error = new PrivateSourceAuthenticationFailure(["<some package feed>"]),
|
22
|
+
UpdateOperations = [],
|
21
23
|
};
|
22
|
-
var
|
23
|
-
await UpdaterWorker.WriteResultFile(result, resultFilePath, new TestLogger());
|
24
|
-
var resultContent = await File.ReadAllTextAsync(resultFilePath);
|
24
|
+
var resultContent = UpdaterWorker.Serialize(result);
|
25
25
|
|
26
26
|
// raw result file should look like this:
|
27
27
|
// {
|
@@ -44,6 +44,72 @@ public partial class UpdateWorkerTests
|
|
44
44
|
Assert.Equal("(<some package feed>)", source.GetString());
|
45
45
|
}
|
46
46
|
|
47
|
+
[Fact]
|
48
|
+
public void ResultFileListsUpdateOperations()
|
49
|
+
{
|
50
|
+
var result = new UpdateOperationResult()
|
51
|
+
{
|
52
|
+
Error = null,
|
53
|
+
UpdateOperations = [
|
54
|
+
new DirectUpdate()
|
55
|
+
{
|
56
|
+
DependencyName = "Package.A",
|
57
|
+
NewVersion = NuGetVersion.Parse("1.0.0"),
|
58
|
+
UpdatedFiles = ["a.txt"]
|
59
|
+
},
|
60
|
+
new PinnedUpdate()
|
61
|
+
{
|
62
|
+
DependencyName = "Package.B",
|
63
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
64
|
+
UpdatedFiles = ["b.txt"]
|
65
|
+
},
|
66
|
+
new ParentUpdate()
|
67
|
+
{
|
68
|
+
DependencyName = "Package.C",
|
69
|
+
NewVersion = NuGetVersion.Parse("3.0.0"),
|
70
|
+
UpdatedFiles = ["c.txt"],
|
71
|
+
ParentDependencyName = "Package.D",
|
72
|
+
ParentNewVersion = NuGetVersion.Parse("4.0.0"),
|
73
|
+
}
|
74
|
+
]
|
75
|
+
};
|
76
|
+
var actualJson = UpdaterWorker.Serialize(result).Replace("\r", "");
|
77
|
+
var expectedJson = """
|
78
|
+
{
|
79
|
+
"UpdateOperations": [
|
80
|
+
{
|
81
|
+
"Type": "DirectUpdate",
|
82
|
+
"DependencyName": "Package.A",
|
83
|
+
"NewVersion": "1.0.0",
|
84
|
+
"UpdatedFiles": [
|
85
|
+
"a.txt"
|
86
|
+
]
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"Type": "PinnedUpdate",
|
90
|
+
"DependencyName": "Package.B",
|
91
|
+
"NewVersion": "2.0.0",
|
92
|
+
"UpdatedFiles": [
|
93
|
+
"b.txt"
|
94
|
+
]
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"Type": "ParentUpdate",
|
98
|
+
"ParentDependencyName": "Package.D",
|
99
|
+
"ParentNewVersion": "4.0.0",
|
100
|
+
"DependencyName": "Package.C",
|
101
|
+
"NewVersion": "3.0.0",
|
102
|
+
"UpdatedFiles": [
|
103
|
+
"c.txt"
|
104
|
+
]
|
105
|
+
}
|
106
|
+
],
|
107
|
+
"Error": null
|
108
|
+
}
|
109
|
+
""".Replace("\r", "");
|
110
|
+
Assert.Equal(expectedJson, actualJson);
|
111
|
+
}
|
112
|
+
|
47
113
|
[Fact]
|
48
114
|
public async Task ForPackagesProject_UpdatePackageReference_InBuildProps()
|
49
115
|
{
|
data/helpers/lib/NuGetUpdater/NuGetUpdater.Core.Test/Update/UpdateWorkerTests.PackageReference.cs
CHANGED
@@ -2,6 +2,8 @@ using System.Linq;
|
|
2
2
|
using System.Text;
|
3
3
|
using System.Text.Json;
|
4
4
|
|
5
|
+
using NuGet.Versioning;
|
6
|
+
|
5
7
|
using NuGetUpdater.Core.Run.ApiModel;
|
6
8
|
using NuGetUpdater.Core.Updater;
|
7
9
|
|
@@ -50,7 +52,20 @@ public partial class UpdateWorkerTests
|
|
50
52
|
<PackageReference Include="Some.Package" Version="13.0.1" />
|
51
53
|
</ItemGroup>
|
52
54
|
</Project>
|
53
|
-
"""
|
55
|
+
""",
|
56
|
+
expectedResult: new()
|
57
|
+
{
|
58
|
+
UpdateOperations = [
|
59
|
+
new DirectUpdate()
|
60
|
+
{
|
61
|
+
DependencyName = "Some.Package",
|
62
|
+
NewVersion = NuGetVersion.Parse("13.0.1"),
|
63
|
+
UpdatedFiles = [
|
64
|
+
"/src/test-project.csproj"
|
65
|
+
]
|
66
|
+
}
|
67
|
+
]
|
68
|
+
}
|
54
69
|
);
|
55
70
|
}
|
56
71
|
|
@@ -2636,7 +2651,18 @@ public partial class UpdateWorkerTests
|
|
2636
2651
|
</ItemGroup>
|
2637
2652
|
</Project>
|
2638
2653
|
""")
|
2639
|
-
]
|
2654
|
+
],
|
2655
|
+
expectedResult: new()
|
2656
|
+
{
|
2657
|
+
UpdateOperations = [
|
2658
|
+
new PinnedUpdate()
|
2659
|
+
{
|
2660
|
+
DependencyName = "Some.Transitive.Dependency",
|
2661
|
+
NewVersion = NuGetVersion.Parse("5.0.2"),
|
2662
|
+
UpdatedFiles = ["/src/Directory.Build.props", "/src/Directory.Packages.props", "/src/test-project.csproj"]
|
2663
|
+
}
|
2664
|
+
]
|
2665
|
+
}
|
2640
2666
|
);
|
2641
2667
|
}
|
2642
2668
|
|
@@ -3106,7 +3132,26 @@ public partial class UpdateWorkerTests
|
|
3106
3132
|
<PackageReference Include="Some.Package" Version="2.0.0" />
|
3107
3133
|
</ItemGroup>
|
3108
3134
|
</Project>
|
3109
|
-
"""
|
3135
|
+
""",
|
3136
|
+
expectedResult: new()
|
3137
|
+
{
|
3138
|
+
UpdateOperations = [
|
3139
|
+
new DirectUpdate()
|
3140
|
+
{
|
3141
|
+
DependencyName = "Some.Package",
|
3142
|
+
NewVersion = NuGetVersion.Parse("2.0.0"),
|
3143
|
+
UpdatedFiles = ["/src/test-project.csproj"]
|
3144
|
+
},
|
3145
|
+
new ParentUpdate()
|
3146
|
+
{
|
3147
|
+
DependencyName = "Transitive.Package",
|
3148
|
+
NewVersion = NuGetVersion.Parse("8.0.0"),
|
3149
|
+
UpdatedFiles = ["/src/test-project.csproj"],
|
3150
|
+
ParentDependencyName = "Some.Package",
|
3151
|
+
ParentNewVersion = NuGetVersion.Parse("2.0.0")
|
3152
|
+
}
|
3153
|
+
]
|
3154
|
+
}
|
3110
3155
|
);
|
3111
3156
|
}
|
3112
3157
|
|
@@ -3202,6 +3247,9 @@ public partial class UpdateWorkerTests
|
|
3202
3247
|
</Project>
|
3203
3248
|
""",
|
3204
3249
|
expectedResult: new() // success
|
3250
|
+
{
|
3251
|
+
UpdateOperations = []
|
3252
|
+
}
|
3205
3253
|
);
|
3206
3254
|
}
|
3207
3255
|
|
@@ -3484,6 +3532,7 @@ public partial class UpdateWorkerTests
|
|
3484
3532
|
expectedResult: new()
|
3485
3533
|
{
|
3486
3534
|
Error = new PrivateSourceAuthenticationFailure([$"{http.BaseUrl.TrimEnd('/')}/index.json"]),
|
3535
|
+
UpdateOperations = [],
|
3487
3536
|
}
|
3488
3537
|
);
|
3489
3538
|
}
|
@@ -3745,5 +3794,40 @@ public partial class UpdateWorkerTests
|
|
3745
3794
|
"""
|
3746
3795
|
);
|
3747
3796
|
}
|
3797
|
+
|
3798
|
+
[Fact]
|
3799
|
+
public async Task UpdateDependencyWhenUnrelatedDependencyHasWildcardVersion()
|
3800
|
+
{
|
3801
|
+
await TestUpdateForProject("Some.Package", "1.0.0", "1.0.1",
|
3802
|
+
experimentsManager: new ExperimentsManager() { UseDirectDiscovery = true },
|
3803
|
+
packages: [
|
3804
|
+
MockNuGetPackage.CreateSimplePackage("Some.Package", "1.0.0", "net9.0"),
|
3805
|
+
MockNuGetPackage.CreateSimplePackage("Some.Package", "1.0.1", "net9.0"),
|
3806
|
+
MockNuGetPackage.CreateSimplePackage("Unrelated.Package", "2.1.0", "net9.0"),
|
3807
|
+
],
|
3808
|
+
projectContents: """
|
3809
|
+
<Project Sdk="Microsoft.NET.Sdk">
|
3810
|
+
<PropertyGroup>
|
3811
|
+
<TargetFramework>net9.0</TargetFramework>
|
3812
|
+
</PropertyGroup>
|
3813
|
+
<ItemGroup>
|
3814
|
+
<PackageReference Include="Some.Package" Version="1.0.0" />
|
3815
|
+
<PackageReference Include="Unrelated.Package" Version="2.*" />
|
3816
|
+
</ItemGroup>
|
3817
|
+
</Project>
|
3818
|
+
""",
|
3819
|
+
expectedProjectContents: """
|
3820
|
+
<Project Sdk="Microsoft.NET.Sdk">
|
3821
|
+
<PropertyGroup>
|
3822
|
+
<TargetFramework>net9.0</TargetFramework>
|
3823
|
+
</PropertyGroup>
|
3824
|
+
<ItemGroup>
|
3825
|
+
<PackageReference Include="Some.Package" Version="1.0.1" />
|
3826
|
+
<PackageReference Include="Unrelated.Package" Version="2.*" />
|
3827
|
+
</ItemGroup>
|
3828
|
+
</Project>
|
3829
|
+
"""
|
3830
|
+
);
|
3831
|
+
}
|
3748
3832
|
}
|
3749
3833
|
}
|