2022-08-30 15:42:25 +02:00
|
|
|
|
using System;
|
|
|
|
|
using NUnit.Framework;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
using Rhino.Mocks;
|
|
|
|
|
using TINK.Model.Connector;
|
|
|
|
|
using TINK.Repository;
|
|
|
|
|
|
|
|
|
|
namespace TestTINKLib.Fixtures.ObjectTests.Connector
|
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
[TestFixture]
|
|
|
|
|
public class TestConnectorCache
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that factory method returns correcty type depending on session cookie.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestCommandFactory()
|
|
|
|
|
{
|
|
|
|
|
var l_oCopri = MockRepository.GenerateStub<ICopriServer>();
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
// Construct not logged in version of connector.
|
|
|
|
|
var l_oCommand = new ConnectorCache(
|
|
|
|
|
new AppContextInfo("MyMerchId", "MyApp", new Version(1, 2)),
|
|
|
|
|
null /*UI language */,
|
|
|
|
|
"", // Not logged in
|
|
|
|
|
"",
|
|
|
|
|
l_oCopri).Command;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
Assert.AreEqual(typeof(Command), l_oCommand.GetType());
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that factory method returns correcty type depending on session cookie.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestCommandFactory_LoggedIn()
|
|
|
|
|
{
|
|
|
|
|
var l_oCopri = MockRepository.GenerateStub<ICopriServer>();
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
var l_oCommand = new ConnectorCache(
|
|
|
|
|
new AppContextInfo("MyMerchId", "MyApp", new Version(1, 2)),
|
|
|
|
|
null /*UI language */,
|
|
|
|
|
"123", // Logged in
|
|
|
|
|
"a@b",
|
|
|
|
|
l_oCopri).Command;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
Assert.AreEqual(typeof(CommandLoggedIn), l_oCommand.GetType());
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that factory method returns correcty type depending on session cookie.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestQueryFactory_CachedServer()
|
|
|
|
|
{
|
|
|
|
|
var l_oCopri = MockRepository.GenerateStub<ICopriServer>();
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
var l_oQuery = new ConnectorCache(
|
|
|
|
|
new AppContextInfo("MyMerchId", "MyApp", new Version(1, 2)),
|
|
|
|
|
null /*UI language */,
|
|
|
|
|
"",
|
|
|
|
|
"",
|
|
|
|
|
l_oCopri).Query;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
Assert.AreEqual(typeof(TINK.Model.Connector.Query), l_oQuery.GetType());
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Verifies that factory method returns correcty type depending on session cookie.
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Test]
|
|
|
|
|
public void TestQueryFactory_LoggedIn()
|
|
|
|
|
{
|
|
|
|
|
var l_oCopri = MockRepository.GenerateStub<ICopriServer>();
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
var l_oQuery = new ConnectorCache(
|
|
|
|
|
new AppContextInfo("MyMerchId", "MyApp", new Version(1, 2)),
|
|
|
|
|
null /*UI language */,
|
|
|
|
|
"123",
|
|
|
|
|
"a@b",
|
|
|
|
|
l_oCopri).Query;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
Assert.AreEqual(typeof(QueryLoggedIn), l_oQuery.GetType());
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
}
|