Add the twelve contests left in the station's log
REF, the Ukrainian DX contest, the BARTG Sprint, ARRL 10M, Russian DX RTTY, RDAC, YO DX HF, Oceania DX, IARU Region 1 Field Day, SARTG RTTY, All Asian and SA 10. Every contest name in the log now opens, and every one of these but Field Day scores its log contact for contact as N1MM did. Most are written from N1MM's own class and checked against the log. Three things the log settled that the class does not say plainly: ARRL 10M counts its multipliers once per mode rather than once, the BARTG Sprint counts a continent once in the contest while its countries and call areas count per band, and RDAC counts nothing but the districts and scores nothing for a station that sends none. All Asian and SA 10 have no class in N1MM, which logs them from a .udc file, so those two are written from the published rules and the log. docs/unfinished.md lists what is still not settled. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01RoGtneMQaz4M9w7Kk49AVD
This commit is contained in:
97
tests/Nonemm.Contests.Tests/SmallContestTests.cs
Normal file
97
tests/Nonemm.Contests.Tests/SmallContestTests.cs
Normal file
@@ -0,0 +1,97 @@
|
||||
using Nonemm.Contests.Rules;
|
||||
using Nonemm.Core;
|
||||
|
||||
namespace Nonemm.Contests.Tests;
|
||||
|
||||
/// The contests whose rules are one table each: what a contact scores and
|
||||
/// where its multiplier comes from.
|
||||
public class SmallContestTests
|
||||
{
|
||||
private static ContestLog LogFor(Contest contest) =>
|
||||
new(contest, TestLog.Germany, TestLog.CountryFile);
|
||||
|
||||
[Theory]
|
||||
[InlineData("DL9XYZ", 5)]
|
||||
[InlineData("IK2XYZ", 10)]
|
||||
[InlineData("JA1XYZ", 15)]
|
||||
public void SartgScoresByCountryAndContinent(string call, int expected) =>
|
||||
Assert.Equal(
|
||||
expected,
|
||||
LogFor(new SartgRtty()).Judge(TestLog.Contact(call, mode: Modes.Rtty)).Points);
|
||||
|
||||
/// The SARTG call area is a second multiplier next to the country.
|
||||
[Fact]
|
||||
public void SartgCountsCallAreasAsWellAsCountries() =>
|
||||
Assert.Equal(
|
||||
[1, 2],
|
||||
LogFor(new SartgRtty())
|
||||
.Judge(TestLog.Contact("K1ABC", mode: Modes.Rtty, section: "K1"))
|
||||
.NewMultipliers.Select(m => m.Index).ToList());
|
||||
|
||||
[Theory]
|
||||
[InlineData(14_150, 1)]
|
||||
[InlineData(7_050, 2)]
|
||||
[InlineData(3_650, 3)]
|
||||
public void AllAsianScoresByBand(double kilohertz, int expected) =>
|
||||
Assert.Equal(
|
||||
expected,
|
||||
LogFor(new AllAsian(ModeCategory.Phone))
|
||||
.Judge(TestLog.Contact("JA1XYZ", kilohertz, mode: Modes.Usb, exchange: "46"))
|
||||
.Points);
|
||||
|
||||
[Fact]
|
||||
public void AllAsianCountsOnlyAsia() =>
|
||||
Assert.Equal(
|
||||
0,
|
||||
LogFor(new AllAsian(ModeCategory.Phone))
|
||||
.Judge(TestLog.Contact("IK2XYZ", mode: Modes.Usb, exchange: "46"))
|
||||
.Points);
|
||||
|
||||
[Theory]
|
||||
[InlineData("PY2XYZ", 4)]
|
||||
[InlineData("IK2XYZ", 2)]
|
||||
public void SouthAmericaTenPaysMoreForSouthAmerica(string call, int expected) =>
|
||||
Assert.Equal(
|
||||
expected,
|
||||
LogFor(new SouthAmerica10())
|
||||
.Judge(TestLog.Contact(call, 28_400, mode: Modes.Usb, section: "11"))
|
||||
.Points);
|
||||
|
||||
[Theory]
|
||||
[InlineData("YO3XYZ", 8)]
|
||||
[InlineData("DL9XYZ", 1)]
|
||||
[InlineData("IK2XYZ", 2)]
|
||||
[InlineData("JA1XYZ", 4)]
|
||||
public void YoDxHfPaysEightForRomania(string call, int expected) =>
|
||||
Assert.Equal(expected, LogFor(new YoDxHf()).Judge(TestLog.Contact(call, section: "AR")).Points);
|
||||
|
||||
[Theory]
|
||||
[InlineData("IK2XYZ", 5)]
|
||||
[InlineData("JA1XYZ", 10)]
|
||||
public void RussianDxRttyScoresByContinent(string call, int expected) =>
|
||||
Assert.Equal(
|
||||
expected,
|
||||
LogFor(new RussianDxRtty()).Judge(TestLog.Contact(call, mode: Modes.Rtty, section: "14")).Points);
|
||||
|
||||
[Theory]
|
||||
[InlineData("IK2XYZ/P", 5)]
|
||||
[InlineData("IK2XYZ", 2)]
|
||||
[InlineData("JA1XYZ", 3)]
|
||||
public void FieldDayPaysMostForAPortableStation(string call, int expected) =>
|
||||
Assert.Equal(
|
||||
expected,
|
||||
LogFor(new FieldDayRegionOne()).Judge(TestLog.Contact(call, number: 22)).Points);
|
||||
|
||||
/// Every contact is one point, and the continent counts once in the whole
|
||||
/// contest rather than once per band.
|
||||
[Fact]
|
||||
public void BartgCountsAContinentOnce()
|
||||
{
|
||||
ContestLog log = LogFor(new BartgSprint());
|
||||
Assert.Equal(1, log.Judge(TestLog.Contact("IK2XYZ", mode: Modes.Rtty)).Points);
|
||||
log.Add(TestLog.Contact("IK2XYZ", mode: Modes.Rtty));
|
||||
Assert.DoesNotContain(
|
||||
log.Judge(TestLog.Contact("F5XYZ", 7_040, mode: Modes.Rtty)).NewMultipliers,
|
||||
m => m.Index == 3);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user