2017-09-13 08:47:34 +02:00
|
|
|
|
using BTCPayServer.Controllers;
|
2018-03-20 16:31:19 +01:00
|
|
|
|
using System.Linq;
|
2017-09-13 08:47:34 +02:00
|
|
|
|
using BTCPayServer.Models.AccountViewModels;
|
2017-09-13 16:50:36 +02:00
|
|
|
|
using BTCPayServer.Models.StoreViewModels;
|
2017-10-20 21:06:37 +02:00
|
|
|
|
using BTCPayServer.Services.Invoices;
|
2017-09-13 08:47:34 +02:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using NBitcoin;
|
|
|
|
|
using NBitpayClient;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Xunit;
|
2017-11-06 09:31:02 +01:00
|
|
|
|
using NBXplorer.DerivationStrategy;
|
2018-03-20 16:31:19 +01:00
|
|
|
|
using BTCPayServer.Payments;
|
|
|
|
|
using BTCPayServer.Payments.Lightning;
|
2017-09-13 08:47:34 +02:00
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Tests
|
|
|
|
|
{
|
|
|
|
|
public class TestAccount
|
|
|
|
|
{
|
2017-10-27 10:53:04 +02:00
|
|
|
|
ServerTester parent;
|
|
|
|
|
public TestAccount(ServerTester parent)
|
|
|
|
|
{
|
|
|
|
|
this.parent = parent;
|
|
|
|
|
BitPay = new Bitpay(new Key(), parent.PayTester.ServerUri);
|
|
|
|
|
}
|
2017-09-13 08:47:34 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public void GrantAccess()
|
|
|
|
|
{
|
|
|
|
|
GrantAccessAsync().GetAwaiter().GetResult();
|
|
|
|
|
}
|
2017-10-11 05:20:44 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public void Register()
|
|
|
|
|
{
|
|
|
|
|
RegisterAsync().GetAwaiter().GetResult();
|
|
|
|
|
}
|
2017-10-11 05:20:44 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public BitcoinExtKey ExtKey
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-10-11 05:20:44 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public async Task GrantAccessAsync()
|
|
|
|
|
{
|
|
|
|
|
await RegisterAsync();
|
2018-04-30 15:28:00 +02:00
|
|
|
|
await CreateStoreAsync();
|
|
|
|
|
var store = this.GetController<StoresController>();
|
2017-10-27 10:53:04 +02:00
|
|
|
|
var pairingCode = BitPay.RequestClientAuthorization("test", Facade.Merchant);
|
|
|
|
|
Assert.IsType<ViewResult>(await store.RequestPairing(pairingCode.ToString()));
|
|
|
|
|
await store.Pair(pairingCode.ToString(), StoreId);
|
|
|
|
|
}
|
2018-04-30 15:28:00 +02:00
|
|
|
|
public void CreateStore()
|
2017-10-27 10:53:04 +02:00
|
|
|
|
{
|
2018-04-30 15:28:00 +02:00
|
|
|
|
CreateStoreAsync().GetAwaiter().GetResult();
|
2017-10-27 10:53:04 +02:00
|
|
|
|
}
|
2018-01-13 14:01:09 +01:00
|
|
|
|
|
2018-04-30 15:00:43 +02:00
|
|
|
|
public T GetController<T>(bool setImplicitStore = true) where T : Controller
|
2018-04-03 09:53:55 +02:00
|
|
|
|
{
|
2018-04-30 15:00:43 +02:00
|
|
|
|
return parent.PayTester.GetController<T>(UserId, setImplicitStore ? StoreId : null);
|
2018-04-03 09:53:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-30 15:28:00 +02:00
|
|
|
|
public async Task CreateStoreAsync()
|
2017-10-27 10:53:04 +02:00
|
|
|
|
{
|
2018-04-30 15:28:00 +02:00
|
|
|
|
var store = this.GetController<UserStoresController>();
|
2017-10-27 10:53:04 +02:00
|
|
|
|
await store.CreateStore(new CreateStoreViewModel() { Name = "Test Store" });
|
|
|
|
|
StoreId = store.CreatedStoreId;
|
|
|
|
|
}
|
2017-10-11 05:20:44 +02:00
|
|
|
|
|
2018-01-11 14:52:28 +01:00
|
|
|
|
public BTCPayNetwork SupportedNetwork { get; set; }
|
|
|
|
|
|
2018-01-11 09:29:48 +01:00
|
|
|
|
public void RegisterDerivationScheme(string crytoCode)
|
|
|
|
|
{
|
|
|
|
|
RegisterDerivationSchemeAsync(crytoCode).GetAwaiter().GetResult();
|
|
|
|
|
}
|
2018-02-23 07:21:42 +01:00
|
|
|
|
public async Task RegisterDerivationSchemeAsync(string cryptoCode)
|
2018-01-11 09:29:48 +01:00
|
|
|
|
{
|
2018-02-23 07:21:42 +01:00
|
|
|
|
SupportedNetwork = parent.NetworkProvider.GetNetwork(cryptoCode);
|
2018-04-29 19:33:42 +02:00
|
|
|
|
var store = parent.PayTester.GetController<StoresController>(UserId, StoreId);
|
2018-02-23 07:21:42 +01:00
|
|
|
|
ExtKey = new ExtKey().GetWif(SupportedNetwork.NBitcoinNetwork);
|
|
|
|
|
DerivationScheme = new DerivationStrategyFactory(SupportedNetwork.NBitcoinNetwork).Parse(ExtKey.Neuter().ToString() + "-[legacy]");
|
2018-05-03 18:46:52 +02:00
|
|
|
|
var vm = (StoreViewModel)((ViewResult)store.UpdateStore()).Model;
|
2018-02-23 07:21:42 +01:00
|
|
|
|
vm.SpeedPolicy = SpeedPolicy.MediumSpeed;
|
2018-04-30 15:00:43 +02:00
|
|
|
|
await store.UpdateStore(vm);
|
2018-02-23 07:21:42 +01:00
|
|
|
|
|
2018-01-11 09:29:48 +01:00
|
|
|
|
await store.AddDerivationScheme(StoreId, new DerivationSchemeViewModel()
|
|
|
|
|
{
|
2018-02-23 07:21:42 +01:00
|
|
|
|
DerivationScheme = DerivationScheme.ToString(),
|
2018-02-10 14:21:52 +01:00
|
|
|
|
Confirmation = true
|
2018-03-20 18:48:11 +01:00
|
|
|
|
}, cryptoCode);
|
2018-01-11 09:29:48 +01:00
|
|
|
|
}
|
|
|
|
|
|
2017-11-06 09:31:02 +01:00
|
|
|
|
public DerivationStrategyBase DerivationScheme { get; set; }
|
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
private async Task RegisterAsync()
|
|
|
|
|
{
|
|
|
|
|
var account = parent.PayTester.GetController<AccountController>();
|
|
|
|
|
await account.Register(new RegisterViewModel()
|
|
|
|
|
{
|
|
|
|
|
Email = Guid.NewGuid() + "@toto.com",
|
|
|
|
|
ConfirmPassword = "Kitten0@",
|
|
|
|
|
Password = "Kitten0@",
|
|
|
|
|
});
|
|
|
|
|
UserId = account.RegisteredUserId;
|
|
|
|
|
}
|
2017-09-13 08:47:34 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public Bitpay BitPay
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
|
|
|
|
public string UserId
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2017-09-13 08:47:34 +02:00
|
|
|
|
|
2017-10-27 10:53:04 +02:00
|
|
|
|
public string StoreId
|
|
|
|
|
{
|
|
|
|
|
get; set;
|
|
|
|
|
}
|
2018-07-01 09:10:17 +02:00
|
|
|
|
|
2018-03-20 16:31:19 +01:00
|
|
|
|
public void RegisterLightningNode(string cryptoCode, LightningConnectionType connectionType)
|
2018-02-25 16:48:12 +01:00
|
|
|
|
{
|
2018-03-20 16:31:19 +01:00
|
|
|
|
RegisterLightningNodeAsync(cryptoCode, connectionType).GetAwaiter().GetResult();
|
2018-02-25 16:48:12 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-20 16:31:19 +01:00
|
|
|
|
public async Task RegisterLightningNodeAsync(string cryptoCode, LightningConnectionType connectionType)
|
2018-02-25 16:48:12 +01:00
|
|
|
|
{
|
2018-04-29 19:33:42 +02:00
|
|
|
|
var storeController = this.GetController<StoresController>();
|
2018-05-25 17:44:59 +02:00
|
|
|
|
|
2018-07-01 14:41:06 +02:00
|
|
|
|
string connectionString = null;
|
2018-05-25 17:44:59 +02:00
|
|
|
|
if (connectionType == LightningConnectionType.Charge)
|
2018-07-01 14:41:06 +02:00
|
|
|
|
connectionString = "type=charge;server=" + parent.MerchantCharge.Client.Uri.AbsoluteUri;
|
2018-05-25 17:44:59 +02:00
|
|
|
|
else if (connectionType == LightningConnectionType.CLightning)
|
2018-07-01 14:41:06 +02:00
|
|
|
|
connectionString = "type=clightning;server=" + parent.MerchantLightningD.Address.AbsoluteUri;
|
2018-07-08 08:33:42 +02:00
|
|
|
|
else if (connectionType == LightningConnectionType.LndREST)
|
2018-07-08 13:58:37 +02:00
|
|
|
|
connectionString = $"type=lnd-rest;server={parent.MerchantLnd.Swagger.BaseUrl};allowinsecure=true";
|
2018-05-25 17:44:59 +02:00
|
|
|
|
else
|
|
|
|
|
throw new NotSupportedException(connectionType.ToString());
|
|
|
|
|
|
2018-02-25 16:48:12 +01:00
|
|
|
|
await storeController.AddLightningNode(StoreId, new LightningNodeViewModel()
|
|
|
|
|
{
|
2018-07-01 14:41:06 +02:00
|
|
|
|
ConnectionString = connectionString,
|
2018-04-09 09:25:31 +02:00
|
|
|
|
SkipPortTest = true
|
2018-03-20 18:48:11 +01:00
|
|
|
|
}, "save", "BTC");
|
2018-03-20 16:31:19 +01:00
|
|
|
|
if (storeController.ModelState.ErrorCount != 0)
|
|
|
|
|
Assert.False(true, storeController.ModelState.FirstOrDefault().Value.Errors[0].ErrorMessage);
|
2018-02-25 16:48:12 +01:00
|
|
|
|
}
|
2018-07-01 09:10:17 +02:00
|
|
|
|
}
|
2017-09-13 08:47:34 +02:00
|
|
|
|
}
|