mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
a4ee1e9805
* Indent all JSON files with two spaces * Upgrade Vue.js * Cheat mode improvements * Show payment details in case of expired invoice * Add logo size recommendation * Show clipboard copy hint cursor * Improve info area and wording * Update BIP21 wording * Invoice details adjustments * Remove form; switch payment methods via AJAX * UI updates * Decrease paddings to gain space * Tighten up padding between logo mark and the store title text * Add drop-shadow to the containers * Wording * Cheating improvements * Improve footer spacing * Cheating improvements * Display addresses * More improvements * Expire invoices * Customize invoice expiry * Footer improvements * Remove theme switch * Remove non-existing sourcemap references * Move inline JS to checkout.js file * Plugin compatibility See Kukks/btcpayserver#8 * Test fix * Upgrade vue-i18next * Extract translations into a separate file * Round QR code borders * Remove "Pay with Bitcoin" title in BIP21 case * Add copy hint to payment details * Cheating: Reduce margins * Adjust dt color * Hide addresses for first iteration * Improve View Details button * Make info section collapsible * Revert original en locale file * Checkout v2 tests * Result view link fixes * Fix BIP21 + lazy payment methods case * More result page link improvements * minor visual improvements * Update clipboard code Remove fallback for old browsers. https://caniuse.com/?search=navigator.clipboard * Transition copy symbol * Update info text color * Invert dark neutral colors Simplifies the dark theme quite a bit. * copy adjustments * updates QR border-radius * Add option to remove logo * More checkout v2 test cases * JS improvements * Remove leftovers * Update test * Fix links * Update tests * Update plugins integration * Remove obsolete url code * Minor view update * Update JS to not use arrow functions * Remove FormId from Checkout Appearance settings * Add English-only hint and feedback link * Checkout Appearance: Make options clearer, remove Custom CSS for v2 * Clipboard copy full URL instead of just address/BOLT11 * Upgrade JS libs, add content checks * Add test for BIP21 setting with zero amount invoice Co-authored-by: dstrukt <gfxdsign@gmail.com>
201 lines
8.9 KiB
C#
201 lines
8.9 KiB
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using BTCPayServer.Payments;
|
|
using BTCPayServer.Tests.Logging;
|
|
using BTCPayServer.Views.Stores;
|
|
using NBitcoin;
|
|
using OpenQA.Selenium;
|
|
using Xunit;
|
|
using Xunit.Abstractions;
|
|
|
|
namespace BTCPayServer.Tests
|
|
{
|
|
[Trait("Selenium", "Selenium")]
|
|
[Collection(nameof(NonParallelizableCollectionDefinition))]
|
|
public class CheckoutV2Tests : UnitTestBase
|
|
{
|
|
private const int TestTimeout = TestUtils.TestTimeout;
|
|
|
|
public CheckoutV2Tests(ITestOutputHelper helper) : base(helper)
|
|
{
|
|
}
|
|
|
|
[Fact(Timeout = TestTimeout)]
|
|
[Trait("Lightning", "Lightning")]
|
|
public async Task CanConfigureCheckout()
|
|
{
|
|
using var s = CreateSeleniumTester();
|
|
s.Server.ActivateLightning();
|
|
await s.StartAsync();
|
|
s.GoToRegister();
|
|
s.RegisterNewUser(true);
|
|
s.CreateNewStore();
|
|
s.EnableCheckoutV2();
|
|
s.AddLightningNode();
|
|
s.AddDerivationScheme();
|
|
|
|
// Configure store url
|
|
var storeUrl = "https://satoshisteaks.com/";
|
|
s.GoToStore();
|
|
s.Driver.FindElement(By.Id("StoreWebsite")).SendKeys(storeUrl);
|
|
s.Driver.FindElement(By.Id("Save")).Click();
|
|
Assert.Contains("Store successfully updated", s.FindAlertMessage().Text);
|
|
|
|
// Default payment method
|
|
var invoiceId = s.CreateInvoice(defaultPaymentMethod: "BTC_LightningLike");
|
|
s.GoToInvoiceCheckout(invoiceId);
|
|
|
|
Assert.Equal(2, s.Driver.FindElements(By.CssSelector(".payment-method")).Count);
|
|
Assert.Contains("Lightning", s.Driver.FindElement(By.CssSelector(".payment-method.active")).Text);
|
|
Assert.DoesNotContain("LNURL", s.Driver.PageSource);
|
|
var payUrl = s.Driver.FindElement(By.CssSelector(".btn-primary")).GetAttribute("href");
|
|
Assert.StartsWith("lightning:", payUrl);
|
|
|
|
// Lightning amount in Sats
|
|
Assert.Contains("BTC", s.Driver.FindElement(By.Id("AmountDue")).Text);
|
|
s.GoToHome();
|
|
s.GoToLightningSettings();
|
|
s.Driver.SetCheckbox(By.Id("LightningAmountInSatoshi"), true);
|
|
s.Driver.FindElement(By.Id("save")).Click();
|
|
Assert.Contains("BTC Lightning settings successfully updated", s.FindAlertMessage().Text);
|
|
s.GoToInvoiceCheckout(invoiceId);
|
|
Assert.Contains("Sats", s.Driver.FindElement(By.Id("AmountDue")).Text);
|
|
|
|
// Expire
|
|
var expirySeconds = s.Driver.FindElement(By.Id("ExpirySeconds"));
|
|
expirySeconds.Clear();
|
|
expirySeconds.SendKeys("3");
|
|
s.Driver.FindElement(By.Id("Expire")).Click();
|
|
|
|
var paymentInfo = s.Driver.WaitForElement(By.Id("PaymentInfo"));
|
|
Assert.Contains("This invoice will expire in", paymentInfo.Text);
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
var expiredSection = s.Driver.FindElement(By.Id("expired"));
|
|
Assert.True(expiredSection.Displayed);
|
|
Assert.Contains("Invoice Expired", expiredSection.Text);
|
|
});
|
|
Assert.True(s.Driver.ElementDoesNotExist(By.Id("ReceiptLink")));
|
|
Assert.Equal(storeUrl, s.Driver.FindElement(By.Id("StoreLink")).GetAttribute("href"));
|
|
|
|
// Test payment
|
|
s.GoToHome();
|
|
invoiceId = s.CreateInvoice();
|
|
s.GoToInvoiceCheckout(invoiceId);
|
|
|
|
// Details
|
|
s.Driver.ToggleCollapse("PaymentDetails");
|
|
var details = s.Driver.FindElement(By.CssSelector(".payment-details"));
|
|
Assert.Contains("Total Price", details.Text);
|
|
Assert.Contains("Total Fiat", details.Text);
|
|
Assert.Contains("Exchange Rate", details.Text);
|
|
Assert.Contains("Amount Due", details.Text);
|
|
Assert.Contains("Recommended Fee", details.Text);
|
|
|
|
// Pay partial amount
|
|
await Task.Delay(200);
|
|
var address = s.Driver.FindElement(By.CssSelector(".qr-container")).GetAttribute("data-destination");
|
|
var amountFraction = "0.00001";
|
|
await s.Server.ExplorerNode.SendToAddressAsync(BitcoinAddress.Create(address, Network.RegTest),
|
|
Money.Parse(amountFraction));
|
|
await s.Server.ExplorerNode.GenerateAsync(1);
|
|
|
|
// Fake Pay
|
|
s.Driver.FindElement(By.Id("FakePayAmount")).FillIn(amountFraction);
|
|
s.Driver.FindElement(By.Id("FakePay")).Click();
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
Assert.Contains("Created transaction",
|
|
s.Driver.WaitForElement(By.Id("CheatSuccessMessage")).Text);
|
|
s.Server.ExplorerNode.Generate(1);
|
|
Assert.Contains("The invoice hasn't been paid in full",
|
|
s.Driver.WaitForElement(By.Id("PaymentInfo")).Text);
|
|
});
|
|
|
|
// Mine
|
|
s.Driver.FindElement(By.Id("Mine")).Click();
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
Assert.Contains("Mined 1 block",
|
|
s.Driver.WaitForElement(By.Id("CheatSuccessMessage")).Text);
|
|
});
|
|
|
|
// Pay full amount
|
|
var amountDue = s.Driver.FindElement(By.Id("AmountDue")).GetAttribute("data-amount-due");
|
|
s.Driver.FindElement(By.Id("FakePayAmount")).FillIn(amountDue);
|
|
s.Driver.FindElement(By.Id("FakePay")).Click();
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
s.Server.ExplorerNode.Generate(1);
|
|
var paidSection = s.Driver.WaitForElement(By.Id("paid"));
|
|
Assert.True(paidSection.Displayed);
|
|
Assert.Contains("Invoice Paid", paidSection.Text);
|
|
});
|
|
s.Driver.FindElement(By.Id("ReceiptLink"));
|
|
Assert.Equal(storeUrl, s.Driver.FindElement(By.Id("StoreLink")).GetAttribute("href"));
|
|
|
|
// BIP21
|
|
s.GoToHome();
|
|
s.GoToStore(StoreNavPages.CheckoutAppearance);
|
|
s.Driver.SetCheckbox(By.Id("OnChainWithLnInvoiceFallback"), true);
|
|
s.Driver.FindElement(By.Id("Save")).Click();
|
|
Assert.Contains("Store successfully updated", s.FindAlertMessage().Text);
|
|
|
|
invoiceId = s.CreateInvoice();
|
|
s.GoToInvoiceCheckout(invoiceId);
|
|
Assert.Empty(s.Driver.FindElements(By.CssSelector(".payment-method")));
|
|
payUrl = s.Driver.FindElement(By.CssSelector(".btn-primary")).GetAttribute("href");
|
|
Assert.StartsWith("bitcoin:", payUrl);
|
|
Assert.Contains("&LIGHTNING=", payUrl);
|
|
|
|
// BIP21 with topup invoice (which is only available with Bitcoin onchain)
|
|
s.GoToHome();
|
|
invoiceId = s.CreateInvoice(amount: null);
|
|
s.GoToInvoiceCheckout(invoiceId);
|
|
Assert.Empty(s.Driver.FindElements(By.CssSelector(".payment-method")));
|
|
payUrl = s.Driver.FindElement(By.CssSelector(".btn-primary")).GetAttribute("href");
|
|
Assert.StartsWith("bitcoin:", payUrl);
|
|
Assert.DoesNotContain("&LIGHTNING=", payUrl);
|
|
}
|
|
|
|
[Fact(Timeout = TestTimeout)]
|
|
public async Task CanUseCheckoutAsModal()
|
|
{
|
|
using var s = CreateSeleniumTester();
|
|
await s.StartAsync();
|
|
s.GoToRegister();
|
|
s.RegisterNewUser();
|
|
s.CreateNewStore();
|
|
s.EnableCheckoutV2();
|
|
s.GoToStore();
|
|
s.AddDerivationScheme();
|
|
var invoiceId = s.CreateInvoice(0.001m, "BTC", "a@x.com");
|
|
var invoice = await s.Server.PayTester.InvoiceRepository.GetInvoice(invoiceId);
|
|
s.Driver.Navigate()
|
|
.GoToUrl(new Uri(s.ServerUri, $"tests/index.html?invoice={invoiceId}"));
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
Assert.True(s.Driver.FindElement(By.Name("btcpay")).Displayed);
|
|
});
|
|
await s.Server.ExplorerNode.SendToAddressAsync(BitcoinAddress.Create(invoice
|
|
.GetPaymentMethod(new PaymentMethodId("BTC", PaymentTypes.BTCLike))
|
|
.GetPaymentMethodDetails().GetPaymentDestination(), Network.RegTest),
|
|
new Money(0.001m, MoneyUnit.BTC));
|
|
|
|
IWebElement closebutton = null;
|
|
TestUtils.Eventually(() =>
|
|
{
|
|
var frameElement = s.Driver.FindElement(By.Name("btcpay"));
|
|
var iframe = s.Driver.SwitchTo().Frame(frameElement);
|
|
closebutton = iframe.FindElement(By.Id("close"));
|
|
Assert.True(closebutton.Displayed);
|
|
});
|
|
closebutton.Click();
|
|
s.Driver.AssertElementNotFound(By.Name("btcpay"));
|
|
Assert.Equal(s.Driver.Url,
|
|
new Uri(s.ServerUri, $"tests/index.html?invoice={invoiceId}").ToString());
|
|
}
|
|
}
|
|
}
|