mirror of
https://github.com/foss42/apidash.git
synced 2025-12-04 20:13:56 +08:00
test: his_request_test mobile
This commit is contained in:
@@ -1,20 +1,19 @@
|
||||
import 'dart:ui';
|
||||
|
||||
import 'package:apidash/screens/history/history_pane.dart';
|
||||
import 'package:apidash/screens/history/history_requests.dart';
|
||||
import 'package:apidash/widgets/widgets.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:spot/spot.dart';
|
||||
import 'package:apidash/app.dart';
|
||||
import 'package:apidash/consts.dart';
|
||||
import 'package:apidash/widgets/widgets.dart';
|
||||
import 'package:apidash/screens/history/history_pane.dart';
|
||||
import '../../test/extensions/widget_tester_extensions.dart';
|
||||
import '../test_helper.dart';
|
||||
|
||||
void main() async {
|
||||
await ApidashTestHelper.initialize(
|
||||
size: Size(kExpandedWindowWidth, kMinWindowSize.height));
|
||||
apidashWidgetTest("Testing Environment Manager in desktop end-to-end",
|
||||
apidashWidgetTest("Testing History of Requests in desktop end-to-end",
|
||||
(WidgetTester tester, helper) async {
|
||||
await tester.pumpUntilFound(find.byType(DashApp));
|
||||
await Future.delayed(const Duration(seconds: 1));
|
||||
@@ -22,7 +21,7 @@ void main() async {
|
||||
/// Create New Request
|
||||
await helper.reqHelper.addRequest(
|
||||
"https://api.apidash.dev/humanize/social",
|
||||
name: "Social",
|
||||
name: "test-his-name",
|
||||
params: [("num", "870000")],
|
||||
);
|
||||
await Future.delayed(const Duration(milliseconds: 200));
|
||||
@@ -33,8 +32,7 @@ void main() async {
|
||||
var sidebarCards = spot<HistoryPane>().spot<SidebarHistoryCard>().finder;
|
||||
final initSidebarCardCount =
|
||||
tester.widgetList<SidebarHistoryCard>(sidebarCards).length;
|
||||
var historyCards =
|
||||
spot<HistoryRequests>().spot<HistoryRequestCard>().finder;
|
||||
var historyCards = find.byType(HistoryRequestCard, skipOffstage: false);
|
||||
final initHistoryCardCount =
|
||||
tester.widgetList<HistoryRequestCard>(historyCards).length;
|
||||
|
||||
@@ -43,8 +41,8 @@ void main() async {
|
||||
await Future.delayed(const Duration(milliseconds: 200));
|
||||
await helper.reqHelper.addRequest(
|
||||
"https://api.apidash.dev/convert/leet",
|
||||
name: "Social",
|
||||
params: [("text", "870000")],
|
||||
name: "test-his-name",
|
||||
params: [("text", "apidash")],
|
||||
);
|
||||
await Future.delayed(const Duration(milliseconds: 200));
|
||||
await helper.reqHelper.sendRequest();
|
||||
@@ -54,7 +52,7 @@ void main() async {
|
||||
sidebarCards = spot<HistoryPane>().spot<SidebarHistoryCard>().finder;
|
||||
final newSidebarCardCount =
|
||||
tester.widgetList<SidebarHistoryCard>(sidebarCards).length;
|
||||
historyCards = spot<HistoryRequests>().spot<HistoryRequestCard>().finder;
|
||||
historyCards = find.byType(HistoryRequestCard, skipOffstage: false);
|
||||
final newHistoryCardCount =
|
||||
tester.widgetList<HistoryRequestCard>(historyCards).length;
|
||||
expect(newSidebarCardCount, initSidebarCardCount);
|
||||
|
||||
Reference in New Issue
Block a user