mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
88 lines
2.8 KiB
C#
88 lines
2.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using TINK.Model;
|
|
using TINK.Model.Bikes;
|
|
using TINK.Model.Bikes.BikeInfoNS.BikeNS;
|
|
using TINK.Model.Bikes.BikeInfoNS.DriveNS;
|
|
|
|
namespace TestTINKLib.Fixtures.ObjectTests.Bike
|
|
{
|
|
[TestFixture]
|
|
public class TestBikeCollectionFilter
|
|
{
|
|
[Test]
|
|
public void TestGetAtStation()
|
|
{
|
|
var coll = new BikeCollection(
|
|
new Dictionary<string, TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo>
|
|
{
|
|
{"3", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("7", LockModel.ILockIt), new Drive(), "3" /* Stadion id */) },
|
|
{"7", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("8", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) },
|
|
{"12", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("33", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) }
|
|
});
|
|
|
|
Assert.AreEqual(
|
|
0,
|
|
BikeCollectionFilter.GetAtStation(null, "12").Count);
|
|
|
|
Assert.AreEqual(
|
|
0,
|
|
coll.GetAtStation(null).Count);
|
|
|
|
Assert.AreEqual(
|
|
0,
|
|
coll.GetAtStation("22").Count);
|
|
|
|
Assert.AreEqual(
|
|
1,
|
|
coll.GetAtStation("3").Count);
|
|
|
|
Assert.AreEqual(
|
|
2,
|
|
coll.GetAtStation("12").Count);
|
|
}
|
|
|
|
[Test]
|
|
public void TestGetLockIt_Null()
|
|
{
|
|
Assert.That(
|
|
BikeCollectionFilter.GetLockIt(null).Count,
|
|
Is.EqualTo(0));
|
|
}
|
|
|
|
[Test]
|
|
public void TestGetLockIt_NoLockIt()
|
|
{
|
|
// Holds no LockIt bikes
|
|
var coll = new BikeCollection(
|
|
new Dictionary<string, TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo>
|
|
{
|
|
{"7", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("8", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) },
|
|
{"12", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("33", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) }
|
|
});
|
|
|
|
Assert.AreEqual(
|
|
0,
|
|
coll.GetLockIt().Count);
|
|
}
|
|
|
|
[Test]
|
|
public void TestGetLockIt()
|
|
{
|
|
|
|
// Holds no LockIt bike with matching station number.
|
|
var coll = new BikeCollection(
|
|
new Dictionary<string, TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo>
|
|
{
|
|
{"7", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("8", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) },
|
|
{"11", new TINK.Model.Bikes.BikeInfoNS.BluetoothLock.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("33", LockModel.ILockIt), new Drive(), 5200544, new Guid("00000000-0000-0000-0000-000000000001"), "12" /* Stadion id */) },
|
|
{"12", new TINK.Model.Bikes.BikeInfoNS.BC.BikeInfo(new TINK.Model.Bikes.BikeInfoNS.BikeNS.Bike("33", LockModel.ILockIt), new Drive(), "12" /* Stadion id */) }
|
|
});
|
|
|
|
Assert.AreEqual(
|
|
1,
|
|
coll.GetLockIt().Count);
|
|
}
|
|
}
|
|
}
|