2021-07-12 21:31:46 +02:00
|
|
|
|
using System;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
using System.Collections.Generic;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
using TestFramework.Repository;
|
|
|
|
|
using TINK.Model.Device;
|
2021-11-14 23:27:29 +01:00
|
|
|
|
using TINK.Model.Services.CopriApi;
|
|
|
|
|
using TINK.Repository.Request;
|
2022-08-30 15:42:25 +02:00
|
|
|
|
using TINK.Repository.Response;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2021-11-14 23:27:29 +01:00
|
|
|
|
namespace TestFramework.Services.CopriApi.Connector
|
2021-07-12 21:31:46 +02:00
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Allows use of memory for retrieving defined respones.</summary>
|
|
|
|
|
public class CopriCallsCacheMemory001 : ICopriCache
|
|
|
|
|
{
|
|
|
|
|
private CopriCallsMemory001 server;
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public CopriCallsCacheMemory001(string sessionCookie = null)
|
|
|
|
|
{
|
|
|
|
|
server = new CopriCallsMemory001(sessionCookie);
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public bool IsStationsExpired => true;
|
|
|
|
|
|
|
|
|
|
public bool IsBikesAvailableExpired => true;
|
|
|
|
|
|
|
|
|
|
public bool IsBikesOccupiedExpired => true;
|
|
|
|
|
|
|
|
|
|
public bool IsConnected => server.IsConnected;
|
|
|
|
|
|
|
|
|
|
public string SessionCookie => server.SessionCookie;
|
|
|
|
|
|
|
|
|
|
public string MerchantId => server.MerchantId;
|
|
|
|
|
|
|
|
|
|
public void AddToCache(StationsAvailableResponse stations)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddToCache(BikesAvailableResponse bikes)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void AddToCache(BikesReservedOccupiedResponse bikes)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<AuthorizationResponse> DoAuthorizationAsync(string p_strMailAddress, string p_strPassword, string p_strDeviceId)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<AuthorizationoutResponse> DoAuthoutAsync()
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> DoReserveAsync(string bikeId, Uri operatorUri)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<ReservationCancelReturnResponse> DoCancelReservationAsync(string p_iBikeId, Uri operatorUri)
|
|
|
|
|
{
|
|
|
|
|
throw new NotImplementedException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> CalculateAuthKeysAsync(string bikeId, Uri operatorUri)
|
|
|
|
|
=> throw new NotSupportedException();
|
|
|
|
|
|
|
|
|
|
public Task<ResponseBase> StartReturningBike(
|
|
|
|
|
string bikeId,
|
|
|
|
|
Uri operatorUri)
|
|
|
|
|
=> null;
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> UpdateLockingStateAsync(
|
|
|
|
|
string bikeId,
|
|
|
|
|
lock_state state,
|
|
|
|
|
Uri operatorUri,
|
|
|
|
|
LocationDto geolocation,
|
|
|
|
|
double batteryPercentage)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> DoBookAsync(string bikeId, Guid guid, double batteryPercentage, Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> BookAvailableAndStartOpeningAsync(string bikeId, Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<ReservationBookingResponse> BookReservedAndStartOpeningAsync(string bikeId, Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<DoReturnResponse> DoReturn(string bikeId, LocationDto location, ISmartDevice smartDevice, Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<DoReturnResponse> ReturnAndStartClosingAsync(
|
|
|
|
|
string bikeId,
|
|
|
|
|
ISmartDevice smartDevice,
|
|
|
|
|
Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<SubmitFeedbackResponse> DoSubmitFeedback(string bikeId, int? currentChargeBars, string message, bool isBikeBroken, Uri operatorUri)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
/// <summary> Submits mini survey to copri server. </summary>
|
|
|
|
|
/// <param name="answers">Collection of answers.</param>
|
|
|
|
|
public Task<ResponseBase> DoSubmitMiniSurvey(IDictionary<string, string> answers)
|
|
|
|
|
=> throw new NotImplementedException();
|
|
|
|
|
|
|
|
|
|
public Task<BikesAvailableResponse> GetBikesAvailableAsync()
|
|
|
|
|
{
|
|
|
|
|
return server.GetBikesAvailableAsync();
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Task<BikesReservedOccupiedResponse> GetBikesOccupiedAsync()
|
|
|
|
|
{
|
|
|
|
|
return server.GetBikesOccupiedAsync();
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
public Task<StationsAvailableResponse> GetStationsAsync()
|
|
|
|
|
{
|
|
|
|
|
return server.GetStationsAsync();
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-12 21:31:46 +02:00
|
|
|
|
}
|