Skip to content

Commit fdc13a8

Browse files
authoredDec 1, 2023
Merge pull request #10 from Zaneris/2.3.1
2.3.1
2 parents 47fbc0d + d0c9187 commit fdc13a8

File tree

10 files changed

+33
-28
lines changed

10 files changed

+33
-28
lines changed
 

‎AdventOfCodeSupport/AdventBase.cs

+11-17
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace AdventOfCodeSupport;
1212
[MemoryDiagnoser]
1313
public abstract partial class AdventBase
1414
{
15-
private AdventSolutions _adventSolutions = null!;
15+
private AdventSolutions? _adventSolutions;
1616
private InputBlock? _input;
1717
private Dictionary<string, string>? _bag;
1818
private string? _part1;
@@ -38,7 +38,6 @@ public abstract partial class AdventBase
3838
/// Answer for part 1. Will run <see cref="Part1"/> to calculate the answer if not already done.
3939
/// </summary>
4040
/// <exception cref="InvalidOperationException">Thrown if <see cref="Part1"/> method fails to set answer.</exception>
41-
4241
public string Part1Answer
4342
{
4443
get
@@ -88,7 +87,7 @@ protected InputBlock Input
8887
get
8988
{
9089
if (_input is not null) return _input;
91-
var inputPattern = _adventSolutions.InputPattern;
90+
var inputPattern = _adventSolutions?.InputPattern ?? "yyyy/Inputs/dd.txt";
9291
inputPattern = inputPattern.Replace("yyyy", $"{Year}");
9392
inputPattern = inputPattern.Replace("dd", $"{Day:D2}");
9493
try
@@ -114,15 +113,7 @@ Please ensure input is saved to "Project Root/{inputPattern}"
114113
/// <summary>
115114
/// Registers self with AdventSolutions.
116115
/// </summary>
117-
protected AdventBase()
118-
{
119-
// Do nothing, handled from AdventSolutions.
120-
}
121-
122-
/// <summary>
123-
/// Registers self with AdventSolutions.
124-
/// </summary>
125-
internal void LoadYearDay(AdventSolutions adventSolutions)
116+
internal void LoadYearDay(AdventSolutions? adventSolutions)
126117
{
127118
_adventSolutions = adventSolutions;
128119
var type = GetType();
@@ -133,7 +124,7 @@ internal void LoadYearDay(AdventSolutions adventSolutions)
133124

134125
var split = type!.FullName!.Split('.');
135126
ClassName = split[^1];
136-
if (_adventSolutions.ClassNamePattern is null)
127+
if (_adventSolutions?.ClassNamePattern is null)
137128
{
138129
var dayMatches = DayPattern().Matches(split[^1]);
139130
var yearMatches = YearPattern().Matches(split[^2]);
@@ -180,6 +171,7 @@ protected virtual void InternalOnLoad() { }
180171
[Benchmark]
181172
public void OnLoad()
182173
{
174+
if (Year == 0) LoadYearDay(null);
183175
InternalOnLoad();
184176
}
185177

@@ -190,6 +182,7 @@ public void OnLoad()
190182
[Benchmark]
191183
public AdventBase Part1()
192184
{
185+
if (Year == 0) LoadYearDay(null);
193186
if (!_onLoad)
194187
{
195188
InternalOnLoad();
@@ -207,6 +200,7 @@ public AdventBase Part1()
207200
[Benchmark]
208201
public AdventBase Part2()
209202
{
203+
if (Year == 0) LoadYearDay(null);
210204
if (!_onLoad)
211205
{
212206
InternalOnLoad();
@@ -243,7 +237,7 @@ public AdventBase Part2()
243237

244238
private async Task DownloadAnswers()
245239
{
246-
var client = new AdventClient(_adventSolutions, this);
240+
var client = new AdventClient(_adventSolutions!, this);
247241
var answers = await client.DownloadAnswersAsync(this, _testHtmlLookup);
248242
_checkedPart1 = answers.Part1;
249243
_checkedPart2 = answers.Part2;
@@ -270,7 +264,7 @@ private async Task DownloadAnswers()
270264
/// </summary>
271265
public async Task DownloadInputAsync()
272266
{
273-
var client = new AdventClient(_adventSolutions, this);
267+
var client = new AdventClient(_adventSolutions!, this);
274268
await client.DownloadInputAsync(this);
275269
}
276270

@@ -289,7 +283,7 @@ public async Task DownloadInputAsync()
289283
}
290284
if (_part1 is null) Part1();
291285
if (_part1 is null) throw new Exception("Cannot submit a null answer for Part 1");
292-
var client = new AdventClient(_adventSolutions, this);
286+
var client = new AdventClient(_adventSolutions!, this);
293287
return await client.SubmitAnswerAsync(this, 1, _part1, _testHtmlSubmit);
294288
}
295289

@@ -308,7 +302,7 @@ public async Task DownloadInputAsync()
308302
}
309303
if (_part2 is null) Part2();
310304
if (_part2 is null) throw new Exception("Cannot submit a null answer for Part 2");
311-
var client = new AdventClient(_adventSolutions, this);
305+
var client = new AdventClient(_adventSolutions!, this);
312306
return await client.SubmitAnswerAsync(this, 2, _part2, _testHtmlSubmit);
313307
}
314308

‎AdventOfCodeSupport/AdventClient.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public AdventClient(AdventSolutions adventSolutions, AdventBase adventBase)
7373
var handler = new HttpClientHandler { UseCookies = false };
7474
_adventClient = new HttpClient(handler) { BaseAddress = new Uri("https://adventofcode.com/") };
7575

76-
var version = new ProductInfoHeaderValue("AdventOfCodeSupport", "2.3.0");
76+
var version = new ProductInfoHeaderValue("AdventOfCodeSupport", "2.3.1");
7777
var comment = new ProductInfoHeaderValue("(+nuget.org/packages/AdventOfCodeSupport by @Zaneris)");
7878
_adventClient.DefaultRequestHeaders.UserAgent.Add(version);
7979
_adventClient.DefaultRequestHeaders.UserAgent.Add(comment);

‎AdventOfCodeSupport/AdventOfCodeSupport.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageReadmeFile>README.md</PackageReadmeFile>
1515
<GenerateDocumentationFile>true</GenerateDocumentationFile>
16-
<PackageVersion>2.3.0</PackageVersion>
17-
<PackageReleaseNotes>- Added Part1Answer and Part2Answer for testing (thanks Pobiega)</PackageReleaseNotes>
16+
<PackageVersion>2.3.1</PackageVersion>
17+
<PackageReleaseNotes>- Fixed benchmarking</PackageReleaseNotes>
1818
<PackageTags>aoc;adventofcode;advent;code;benchmark;benchmarkdotnet;chatgpt;gpt;</PackageTags>
1919
</PropertyGroup>
2020

‎AdventOfCodeSupport/Testing/TestExtensions.cs

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@ public static class TestExtensions
1111
/// </summary>
1212
/// <param name="adventBase">Extending interface.</param>
1313
/// <param name="input">The custom input to test with.</param>
14-
public static void SetTestInput(this AdventBase adventBase, string? input)
14+
/// <returns><see cref="AdventBase"/> for chaining.</returns>
15+
public static AdventBase SetTestInput(this AdventBase adventBase, string? input)
1516
{
1617
adventBase.SetTestInput(input);
18+
return adventBase;
1719
}
1820

1921
/// <summary>
@@ -32,8 +34,10 @@ public static Dictionary<string, string> GetBag(this AdventBase adventBase)
3234
/// <param name="adventBase">Extending interface.</param>
3335
/// <param name="htmlSubmitResult">The custom HTML submission result to test with.</param>
3436
/// <param name="htmlLookupResult">The custom HTML already submitted answer result to test with.</param>
35-
public static void SetTestHtmlResults(this AdventBase adventBase, string htmlSubmitResult, string htmlLookupResult)
37+
/// <returns><see cref="AdventBase"/> for chaining.</returns>
38+
public static AdventBase SetTestHtmlResults(this AdventBase adventBase, string htmlSubmitResult, string htmlLookupResult)
3639
{
3740
adventBase.SetTestHtmlResults(htmlSubmitResult, htmlLookupResult);
41+
return adventBase;
3842
}
3943
}

‎AltNamingTests/AltNamingTests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.0"/>
13+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
1414
<PackageReference Include="xunit" Version="2.4.2"/>
1515
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

‎PackageTests/PackageTests.cs

+2
Original file line numberDiff line numberDiff line change
@@ -164,4 +164,6 @@ public async Task TestHtml_SubmitAnswer_FalseResult()
164164
var result = await day.SubmitPart1Async();
165165
Assert.False(result);
166166
}
167+
168+
// TODO: Add more web tests
167169
}

‎SampleProject/2019/Day18.cs

+4
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,15 @@ public class Day18 : AdventBase
66
{
77
protected override object InternalPart1()
88
{
9+
Thread.Sleep(1);
10+
var text = Input.Text;
911
return 2077;
1012
}
1113

1214
protected override object InternalPart2()
1315
{
16+
Thread.Sleep(1);
17+
var text = Input.Text;
1418
return 1922;
1519
}
1620
}

‎SampleProject/2019/Inputs/18.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Hello

‎SampleProject/Program.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
var solutions = new AdventSolutions();
44
//await solutions.DownloadInputsAsync();
55
var day = solutions.GetDay(2019, 18);
6-
day.Part1();
7-
await day.CheckPart1Async();
8-
await day.SubmitPart1Async();
6+
//day.Part1();
7+
//await day.CheckPart1Async();
8+
//await day.SubmitPart1Async();
9+
day.Benchmark(); // Benchmark parts 1 & 2.
910
//solutions.GetMostRecentDay().Part1().Part2(); // Run parts 1 & 2 of day's solution.
10-
//solutions.GetMostRecentDay().Benchmark(); // Benchmark parts 1 & 2.
1111
//solutions.BenchmarkAll();

‎SampleProject/SampleProject.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</ItemGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="AdventOfCodeSupport" Version="2.2.0" />
16+
<ProjectReference Include="..\AdventOfCodeSupport\AdventOfCodeSupport.csproj" />
1717
</ItemGroup>
1818

1919
</Project>

0 commit comments

Comments
 (0)
Please sign in to comment.