2016-08-10 14:42:58 +00:00
|
|
|
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
|
using System;
|
2017-04-29 23:22:32 +00:00
|
|
|
|
using PKHeX.Core;
|
2016-08-10 14:42:58 +00:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.Tests.PKM
|
|
|
|
|
{
|
|
|
|
|
[TestClass]
|
|
|
|
|
public class PKMTests
|
|
|
|
|
{
|
2017-04-29 23:22:32 +00:00
|
|
|
|
private const string DateTestCategory = "PKM Date Tests";
|
|
|
|
|
private const string PIDIVTestCategory = "PKM PIDIV Matching Tests";
|
2016-08-10 14:42:58 +00:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[TestCategory(DateTestCategory)]
|
|
|
|
|
public void MetDateGetterTest()
|
|
|
|
|
{
|
|
|
|
|
var pk = new DateTestPKM();
|
|
|
|
|
|
|
|
|
|
// Ensure MetDate is null when components are all 0
|
|
|
|
|
pk.MetDay = 0;
|
|
|
|
|
pk.MetMonth = 0;
|
|
|
|
|
pk.MetYear = 0;
|
2016-08-11 00:54:12 +00:00
|
|
|
|
Assert.IsFalse(pk.MetDate.HasValue, "MetDate should be null when date components are all 0.");
|
2016-08-10 14:42:58 +00:00
|
|
|
|
|
|
|
|
|
// Ensure MetDate gives correct date
|
|
|
|
|
pk.MetDay = 10;
|
|
|
|
|
pk.MetMonth = 8;
|
|
|
|
|
pk.MetYear = 16;
|
|
|
|
|
Assert.AreEqual(new DateTime(2016, 8, 10).Date, pk.MetDate.Value.Date, "Met date does not return correct date.");
|
2016-08-11 00:54:12 +00:00
|
|
|
|
|
|
|
|
|
// Ensure 0 year is calculated correctly
|
|
|
|
|
pk.MetDay = 1;
|
|
|
|
|
pk.MetMonth = 1;
|
|
|
|
|
pk.MetYear = 0;
|
|
|
|
|
Assert.AreEqual(2000, pk.MetDate.Value.Date.Year, "Year is not calculated correctly.");
|
2016-08-10 14:42:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[TestCategory(DateTestCategory)]
|
|
|
|
|
public void MetDateSetterTest()
|
|
|
|
|
{
|
|
|
|
|
var pk = new DateTestPKM();
|
|
|
|
|
|
|
|
|
|
// Ensure setting to null zeros the components
|
|
|
|
|
// -- Set to something else first
|
|
|
|
|
pk.MetDay = 12;
|
|
|
|
|
pk.MetMonth = 12;
|
|
|
|
|
pk.MetYear = 12;
|
|
|
|
|
// -- Act
|
|
|
|
|
pk.MetDate = null;
|
|
|
|
|
// -- Assert
|
|
|
|
|
Assert.AreEqual(0, pk.MetDay, "Met_Day was not zeroed when MetDate is set to null");
|
|
|
|
|
Assert.AreEqual(0, pk.MetMonth, "Met_Month was not zeroed when MetDate is set to null");
|
|
|
|
|
Assert.AreEqual(0, pk.MetYear, "Met_Year was not zeroed when MetDate is set to null");
|
|
|
|
|
|
|
|
|
|
// Ensure setting to a date sets the components
|
2017-02-01 15:18:09 +00:00
|
|
|
|
var now = DateTime.UtcNow;
|
2016-08-10 14:42:58 +00:00
|
|
|
|
// -- Set to something else first
|
|
|
|
|
pk.MetDay = 12;
|
|
|
|
|
pk.MetMonth = 12;
|
|
|
|
|
pk.MetYear = 12;
|
|
|
|
|
if (now.Month == 12)
|
|
|
|
|
{
|
|
|
|
|
// We don't want the test to work just because it's 12/12 right now.
|
|
|
|
|
pk.MetMonth = 11;
|
|
|
|
|
}
|
|
|
|
|
// -- Act
|
|
|
|
|
pk.MetDate = now;
|
|
|
|
|
// -- Assert
|
|
|
|
|
Assert.AreEqual(now.Day, pk.MetDay, "Met_Day was not correctly set");
|
|
|
|
|
Assert.AreEqual(now.Month, pk.MetMonth, "Met_Month was not correctly set");
|
|
|
|
|
Assert.AreEqual(now.Year - 2000, pk.MetYear, "Met_Year was not correctly set");
|
|
|
|
|
}
|
2016-08-10 14:46:38 +00:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[TestCategory(DateTestCategory)]
|
|
|
|
|
public void EggMetDateGetterTest()
|
|
|
|
|
{
|
|
|
|
|
var pk = new DateTestPKM();
|
|
|
|
|
|
|
|
|
|
// Ensure MetDate is null when components are all 0
|
|
|
|
|
pk.EggMetDay = 0;
|
|
|
|
|
pk.EggMetMonth = 0;
|
|
|
|
|
pk.EggMetYear = 0;
|
|
|
|
|
Assert.IsFalse(pk.MetDate.HasValue, "EggMetDate should be null when date components are all 0.");
|
|
|
|
|
|
|
|
|
|
// Ensure MetDate gives correct date
|
|
|
|
|
pk.EggMetDay = 10;
|
|
|
|
|
pk.EggMetMonth = 8;
|
|
|
|
|
pk.EggMetYear = 16;
|
|
|
|
|
Assert.AreEqual(new DateTime(2016, 8, 10).Date, pk.EggMetDate.Value.Date, "Egg met date does not return correct date.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[TestCategory(DateTestCategory)]
|
|
|
|
|
public void EggMetDateSetterTest()
|
|
|
|
|
{
|
|
|
|
|
var pk = new DateTestPKM();
|
|
|
|
|
|
|
|
|
|
// Ensure setting to null zeros the components
|
|
|
|
|
// -- Set to something else first
|
|
|
|
|
pk.EggMetDay = 12;
|
|
|
|
|
pk.EggMetMonth = 12;
|
|
|
|
|
pk.EggMetYear = 12;
|
|
|
|
|
// -- Act
|
|
|
|
|
pk.EggMetDate = null;
|
|
|
|
|
// -- Assert
|
|
|
|
|
Assert.AreEqual(0, pk.EggMetDay, "Egg_Day was not zeroed when EggMetDate is set to null");
|
|
|
|
|
Assert.AreEqual(0, pk.EggMetMonth, "Egg_Month was not zeroed when EggMetDate is set to null");
|
|
|
|
|
Assert.AreEqual(0, pk.EggMetYear, "Egg_Year was not zeroed when EggMetDate is set to null");
|
|
|
|
|
|
|
|
|
|
// Ensure setting to a date sets the components
|
2017-02-01 15:18:09 +00:00
|
|
|
|
var now = DateTime.UtcNow;
|
2016-08-10 14:46:38 +00:00
|
|
|
|
// -- Set to something else first
|
|
|
|
|
pk.EggMetDay = 12;
|
|
|
|
|
pk.EggMetMonth = 12;
|
|
|
|
|
pk.EggMetYear = 12;
|
|
|
|
|
if (now.Month == 12)
|
|
|
|
|
{
|
|
|
|
|
// We don't want the test to work just because it's 12/12 right now.
|
|
|
|
|
pk.EggMetMonth = 11;
|
|
|
|
|
}
|
|
|
|
|
// -- Act
|
|
|
|
|
pk.EggMetDate = now;
|
|
|
|
|
// -- Assert
|
|
|
|
|
Assert.AreEqual(now.Day, pk.EggMetDay, "Egg_Day was not correctly set");
|
|
|
|
|
Assert.AreEqual(now.Month, pk.EggMetMonth, "Egg_Month was not correctly set");
|
|
|
|
|
Assert.AreEqual(now.Year - 2000, pk.EggMetYear, "Egg_Year was not correctly set");
|
|
|
|
|
}
|
2017-04-29 23:22:32 +00:00
|
|
|
|
|
|
|
|
|
[TestMethod]
|
|
|
|
|
[TestCategory(PIDIVTestCategory)]
|
|
|
|
|
public void PIDIVMatchingTest()
|
|
|
|
|
{
|
|
|
|
|
// IVs are stored HP/ATK/DEF/SPE/SPA/SPD
|
|
|
|
|
var pk1 = new PK3
|
|
|
|
|
{
|
|
|
|
|
PID = 0xE97E0000,
|
|
|
|
|
IVs = new[] {17, 19, 20, 16, 13, 12}
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.Method_1, MethodFinder.Analyze(pk1)?.Type, "Unable to match PID to Method 1 spread");
|
|
|
|
|
var pk2 = new PK3
|
|
|
|
|
{
|
|
|
|
|
PID = 0x5271E97E,
|
|
|
|
|
IVs = new[] {02, 18, 03, 12, 22, 24}
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.Method_2, MethodFinder.Analyze(pk2)?.Type, "Unable to match PID to Method 2 spread");
|
|
|
|
|
var pk4 = new PK3
|
|
|
|
|
{
|
|
|
|
|
PID = 0x31B05271,
|
|
|
|
|
IVs = new[] {02, 18, 03, 05, 30, 11}
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.Method_4, MethodFinder.Analyze(pk4)?.Type, "Unable to match PID to Method 4 spread");
|
|
|
|
|
|
|
|
|
|
var pk3 = new PK3
|
|
|
|
|
{
|
|
|
|
|
PID = 0x0985A297,
|
|
|
|
|
IVs = new[] {06, 01, 00, 07, 17, 07}
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.XDC, MethodFinder.Analyze(pk3)?.Type, "Unable to match PID to XDC spread");
|
|
|
|
|
|
|
|
|
|
var pkC = new PK3
|
|
|
|
|
{
|
|
|
|
|
PID = 0x9E27D2F6,
|
|
|
|
|
IVs = new[] {04, 15, 21, 14, 18, 29}
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.Channel, MethodFinder.Analyze(pkC)?.Type, "Unable to match PID to Channel spread");
|
|
|
|
|
|
|
|
|
|
var pkCC = new PK4
|
|
|
|
|
{
|
|
|
|
|
PID = 0x00000037,
|
|
|
|
|
IVs = new[] {16, 13, 12, 02, 18, 03},
|
|
|
|
|
Species = 1,
|
|
|
|
|
Gender = 0,
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.CuteCharm, MethodFinder.Analyze(pkCC)?.Type, "Unable to match PID to Cute Charm spread");
|
|
|
|
|
|
|
|
|
|
var pkASR = new PK4
|
|
|
|
|
{
|
|
|
|
|
PID = 0x07578CB7, // 0x5271E97E rerolled
|
|
|
|
|
IVs = new[] {16, 13, 12, 02, 18, 03},
|
|
|
|
|
};
|
|
|
|
|
Assert.AreEqual(PIDType.G4AntiShiny, MethodFinder.Analyze(pkASR)?.Type, "Unable to match PID to Antishiny4 spread");
|
|
|
|
|
}
|
2016-08-10 14:42:58 +00:00
|
|
|
|
}
|
|
|
|
|
}
|