2024-09-22 02:46:51 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
|
|
import 'package:integration_test/integration_test.dart';
|
|
|
|
|
|
|
|
import '../components/common_test_constants.dart';
|
|
|
|
import '../components/common_test_flows.dart';
|
|
|
|
import '../robots/auth_page_robot.dart';
|
|
|
|
import '../robots/dashboard_page_robot.dart';
|
|
|
|
import '../robots/exchange_confirm_page_robot.dart';
|
|
|
|
import '../robots/exchange_page_robot.dart';
|
|
|
|
import '../robots/exchange_trade_page_robot.dart';
|
2024-11-07 14:46:08 +00:00
|
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
2024-09-22 02:46:51 +00:00
|
|
|
|
|
|
|
void main() {
|
|
|
|
IntegrationTestWidgetsFlutterBinding.ensureInitialized();
|
|
|
|
|
|
|
|
AuthPageRobot authPageRobot;
|
|
|
|
CommonTestFlows commonTestFlows;
|
|
|
|
ExchangePageRobot exchangePageRobot;
|
|
|
|
DashboardPageRobot dashboardPageRobot;
|
|
|
|
ExchangeTradePageRobot exchangeTradePageRobot;
|
|
|
|
ExchangeConfirmPageRobot exchangeConfirmPageRobot;
|
|
|
|
|
2024-11-07 14:46:08 +00:00
|
|
|
testWidgets('Exchange flow', (tester) async {
|
|
|
|
authPageRobot = AuthPageRobot(tester);
|
|
|
|
commonTestFlows = CommonTestFlows(tester);
|
|
|
|
exchangePageRobot = ExchangePageRobot(tester);
|
|
|
|
dashboardPageRobot = DashboardPageRobot(tester);
|
|
|
|
exchangeTradePageRobot = ExchangeTradePageRobot(tester);
|
|
|
|
exchangeConfirmPageRobot = ExchangeConfirmPageRobot(tester);
|
|
|
|
|
|
|
|
await commonTestFlows.startAppFlow(ValueKey('exchange_app_test_key'));
|
|
|
|
await commonTestFlows.welcomePageToRestoreWalletThroughSeedsFlow(
|
|
|
|
CommonTestConstants.testWalletType,
|
|
|
|
secrets.solanaTestWalletSeeds,
|
|
|
|
CommonTestConstants.pin,
|
|
|
|
);
|
|
|
|
await dashboardPageRobot.navigateToExchangePage();
|
|
|
|
|
|
|
|
// ----------- Exchange Page -------------
|
|
|
|
await exchangePageRobot.selectDepositCurrency(CommonTestConstants.testDepositCurrency);
|
|
|
|
await exchangePageRobot.selectReceiveCurrency(CommonTestConstants.testReceiveCurrency);
|
|
|
|
|
|
|
|
await exchangePageRobot.enterDepositAmount(CommonTestConstants.exchangeTestAmount);
|
|
|
|
await exchangePageRobot.enterDepositRefundAddress(
|
|
|
|
depositAddress: CommonTestConstants.testWalletAddress,
|
|
|
|
);
|
|
|
|
await exchangePageRobot.enterReceiveAddress(CommonTestConstants.testWalletAddress);
|
|
|
|
|
|
|
|
await exchangePageRobot.onExchangeButtonPressed();
|
|
|
|
|
|
|
|
await exchangePageRobot.handleErrors(CommonTestConstants.exchangeTestAmount);
|
|
|
|
|
|
|
|
final onAuthPage = authPageRobot.onAuthPage();
|
|
|
|
if (onAuthPage) {
|
|
|
|
await authPageRobot.enterPinCode(CommonTestConstants.pin);
|
|
|
|
}
|
|
|
|
|
|
|
|
await exchangeConfirmPageRobot.onSavedTradeIdButtonPressed();
|
|
|
|
await exchangeTradePageRobot.onGotItButtonPressed();
|
2024-09-22 02:46:51 +00:00
|
|
|
});
|
|
|
|
}
|