1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
|
import os
from pathlib import Path
from unittest import mock
import pytest
from textual.pilot import Pilot
from textual.widgets import Input
from posting.__main__ import make_posting
TEST_DIR = Path(__file__).parent
CONFIG_DIR = TEST_DIR / "sample-configs"
ENV_DIR = TEST_DIR / "sample-envs"
THEME_DIR = TEST_DIR / "sample-themes"
SAMPLE_COLLECTIONS = TEST_DIR / "sample-collections"
POSTING_MAIN = TEST_DIR / "posting_snapshot_app.py"
def use_config(file_name: str):
"""Specify which config file to use from the `sample-configs` directory."""
return mock.patch.dict(
os.environ, {"POSTING_CONFIG_FILE": str(CONFIG_DIR / file_name)}
)
def patch_env(key: str, value: str):
"""Decorator to patch and environment variable."""
return mock.patch.dict(os.environ, {key: value})
async def disable_blink_for_active_cursors(pilot: Pilot) -> None:
"""Allows us to disable cursors which could not be disabled via config.
You'll probably want to use this if you open the command palette using a
test, as the config does not target that Input's cursor.
"""
await pilot.pause()
pilot.app.screen.query_one(Input).cursor_blink = False
@use_config("general.yaml")
class TestJumpMode:
@pytest.mark.parametrize("spacing", ["compact", "standard"])
def test_loads(self, spacing, snap_compare):
"""Simple check that ctrl+o enters jump mode."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o")
with patch_env("POSTING_SPACING", spacing):
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_focus_switch(self, snap_compare):
"""Jump mode can target focusable widgets such as the collection tree."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o") # enter jump mode
await pilot.press("tab") # target collection tree
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_click_switch(self, snap_compare):
"""Jump mode can target widgets that are not focusable, such as tabs."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o") # enter jump mode
await pilot.press("u") # target "Options" tab
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
class TestMethodSelection:
def test_select_post_method(self, snap_compare):
"""Simple check that we can change the method."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+t")
await pilot.press("p")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
class TestUrlBar:
def test_dropdown_appears_on_typing(self, snap_compare):
"""Check that the dropdown is filled with URLs."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press(*"http") # Move to the dropdown
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_dropdown_filters_on_typing(self, snap_compare):
"""Check that the dropdown filters on typing."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press(*"json") # Move to the dropdown
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_dropdown_completion_selected_via_enter_key(self, snap_compare):
"""Check that the dropdown completion is selected."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press(*"json") # Move to the dropdown
await pilot.press("enter") # Select the completion
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_dropdown_completion_selected_via_tab_key(self, snap_compare):
"""Check that the dropdown completion is selected."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press(*"json") # Move to the dropdown
await pilot.press("tab") # Select the completion
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
class TestCommandPalette:
@pytest.mark.parametrize("spacing", ["compact", "standard"])
def test_loads_and_shows_discovery_options(self, spacing, snap_compare):
"""Check that the command palette loads."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+p")
await disable_blink_for_active_cursors(pilot)
with patch_env("POSTING_SPACING", spacing):
assert snap_compare(
POSTING_MAIN, run_before=run_before, terminal_size=(120, 34)
)
def test_can_type_to_filter_options(self, snap_compare):
"""Check that we can run a command from the command palette."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+p")
await disable_blink_for_active_cursors(pilot)
await pilot.press(*"view")
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_can_run_command__hide_collection_browser(self, snap_compare):
"""Check that we can run a command from the command palette."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+p")
await disable_blink_for_active_cursors(pilot)
await pilot.press(*"tog coll")
await pilot.press("down", "enter")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestNewRequest:
def test_dialog_loads_and_can_be_used(self, snap_compare):
"""Check that the new request dialog loads and is prefilled
with the data based on where the cursor is."""
async def run_before(pilot: Pilot):
await pilot.press("J", "J", "ctrl+n")
await pilot.press(*"foo")
await pilot.press("tab", "tab")
await pilot.press(*"bar")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@pytest.mark.serial
def test_new_request_added_to_tree_correctly_and_notification_shown(
self, snap_compare
):
"""Check that the new request is added to the tree correctly
and that a notification is shown."""
async def run_before(pilot: Pilot):
await pilot.press("J", "J", "ctrl+n")
await pilot.press(*"foo")
await pilot.press("tab", "tab")
await pilot.press(*"bar")
await pilot.press("ctrl+n")
await pilot.pause()
await pilot.pause(2)
# Check the file exists
new_request_file = (
SAMPLE_COLLECTIONS / "jsonplaceholder" / "posts" / "foo.posting.yaml"
)
assert new_request_file.exists()
# Check the file content
assert (
new_request_file.read_text("utf-8")
== """\
name: foo
description: bar
"""
)
new_request_file.unlink()
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_cannot_create_request_without_name(self, snap_compare):
"""Check that we cannot create a request without a name.
We should see a validation error appear in the modal.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+n")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
@pytest.mark.skip(reason="This test is flaky on CI - needs investigation.")
def test_cannot_create_request_with_duplicate_name(self, snap_compare):
"""Check that we cannot create a request with a duplicate name.
We expect to see an error toast at the bottom right.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+n")
await pilot.press(*"echo") # this name already exists
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_cannot_create_request_invalid_filename(self, snap_compare):
"""Check that we cannot create a request with an invalid filename.
You should see a validation error next to the filename field.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+n", "x", "tab")
await pilot.press(*"..")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(88, 28))
def test_cannot_supply_invalid_path_in_collection(self, snap_compare):
"""Check that we cannot supply an invalid path in the collection.
You should see a validation error next to the filename field.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+n", "x", "tab", "tab", "tab")
await pilot.press(*"../")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(88, 28))
@use_config("general.yaml")
class TestUserInterfaceShortcuts:
def test_hide_collection_browser(self, snap_compare):
"""Check that we can hide the collection browser."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+h")
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_expand_request_section(self, snap_compare):
"""Check that we can expand the request section."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o") # jump mode
await pilot.press("q") # move focus to inside request section
await pilot.press("ctrl+m") # expand request section
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_expand_then_reset(self, snap_compare):
"""Check that we can expand the request section and then reset it."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o") # jump mode
await pilot.press("q") # move focus to inside request section
await pilot.press("ctrl+m") # expand request section
await pilot.press("ctrl+m") # reset sections
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestLoadingRequest:
def test_request_loaded_into_view__headers(self, snap_compare):
"""Check that the request headers are loaded into the view."""
async def run_before(pilot: Pilot):
# Navigate to 'get one post' and select it.
await pilot.press(*"Jj")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
def test_request_loaded_into_view__body(self, snap_compare):
"""Check that the request body is loaded into the view."""
async def run_before(pilot: Pilot):
# Navigate to 'POST one post' and select it.
await pilot.press(*"JJjjj")
await pilot.press("enter")
await pilot.press("ctrl+o", "w") # jump to 'Body' tab
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
def test_request_loaded_into_view__query_params(self, snap_compare):
"""Check that the request query params are loaded into the view."""
async def run_before(pilot: Pilot):
# Navigate to 'GET comments via query' and select it.
await pilot.press(*"JJJjj")
await pilot.press("enter")
await pilot.press("ctrl+o", "r") # jump to 'Query Params' tab
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
def test_request_loaded_into_view__auth(self, snap_compare):
"""Check that the request auth is loaded into the view."""
async def run_before(pilot: Pilot):
# Navigate to 'GET comments via query' and select it.
await pilot.press(*"jj")
await pilot.press("enter")
await pilot.press("ctrl+o", "t") # jump to 'Auth' tab
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 44))
def test_request_loaded_into_view__path_params(self, snap_compare):
"""Check that the request path params are loaded into the view."""
async def run_before(pilot: Pilot):
await pilot.press(*"jj")
await pilot.press("enter")
await pilot.press("ctrl+o", "e") # jump to 'Path Params' tab
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
# @pytest.mark.skip(
# reason="info tab contains a path, specific to the host the test runs on"
# )
# def test_request_loaded_into_view__info(self, snap_compare):
# """Check that the request info is loaded into the view."""
# async def run_before(pilot: Pilot):
# await pilot.press("j")
# await pilot.press("enter")
# await pilot.press("ctrl+o", "t") # jump to 'Info' tab
# assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 44))
def test_request_loaded_into_view__options(self, snap_compare):
"""Check that the request options are loaded into the view."""
async def run_before(pilot: Pilot):
await pilot.press(*"jj")
await pilot.press("enter")
await pilot.press("ctrl+o", "i") # jump to 'Options' tab
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 44))
@use_config("general.yaml")
class TestHelpScreen:
def test_help_screen_appears(self, snap_compare):
"""Check that the help screen appears."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+question_mark")
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 42))
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestSave:
def test_no_request_selected__dialog_is_prefilled_correctly(self, snap_compare):
"""Check that the save dialog appears when no request is selected.
We should confirm that the New Request dialogue is open, and that the
information is pre-filled. Ensure that the filename is also computed
correctly for the `*.posting.yaml` file.
"""
async def run_before(pilot: Pilot):
await pilot.press(*"JJj")
await pilot.press("ctrl+o", "y") # select 'Info' tab
await pilot.press("j") # move down into 'Info' tab
await pilot.press(*"Foo: Bar")
await pilot.press("tab")
await pilot.press(*"baz")
await pilot.press("ctrl+s")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestSendRequest:
@pytest.mark.parametrize("spacing", ["compact", "standard"])
def test_send_request(self, spacing, snap_compare):
"""Check that we can send a request."""
async def run_before(pilot: Pilot):
await pilot.press(*"JJj") # select 'get one post'
await pilot.press("l") # testing 'l' to select
await pilot.press("ctrl+j") # send request
await pilot.app.workers.wait_for_complete()
with patch_env("POSTING_SPACING", spacing):
assert snap_compare(
POSTING_MAIN, run_before=run_before, terminal_size=(88, 34)
)
@use_config("modified_config.yaml")
class TestConfig:
def test_config(self, snap_compare):
"""Check that the config is loaded correctly.
The config loaded in this test class modifies the theme,
layout, focus on startup and response, and hides the header.
We should pay special attention to ensure the response body
is focused, as it should happen automatically when the response
is received based on this config.
"""
async def run_before(pilot: Pilot):
await pilot.press(*"JJj")
await pilot.press("l")
await pilot.press("ctrl+j")
await pilot.app.workers.wait_for_complete()
assert snap_compare(
POSTING_MAIN, run_before=run_before, terminal_size=(120, 34)
)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestVariables:
def test_unresolved_variables_highlighted(self, snap_compare):
"""Check that the unresolved variables are highlighted in the URL
and as a query parameter value."""
async def run_before(pilot: Pilot):
await pilot.press(*"JJJJj") # go to 'get one user'
await pilot.press("enter") # press 'enter' to select
await pilot.press("ctrl+o", "r") # go to 'Query' tab
await pilot.press("down") # move down into 'Query' tab
await pilot.press(*"foo", "enter") # pressing enter should shift to value
# The params typed below should be dimmed since they dont resolve
await pilot.press(*"$nope/${nope}")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@pytest.mark.parametrize("spacing", ["compact", "standard"])
def test_resolved_variables_highlight_and_preview(self, spacing, snap_compare):
"""Check that the resolved variables are highlighted in the URL
and the value is shown below."""
env_path = str((ENV_DIR / "sample_base.env").resolve())
with patch_env("POSTING_SPACING", spacing):
app = make_posting(
collection=SAMPLE_COLLECTIONS / "jsonplaceholder" / "todos",
env=(env_path,),
)
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+l", "right")
assert snap_compare(app, run_before=run_before)
@use_config("custom_theme.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
@patch_env("POSTING_THEME_DIRECTORY", str(THEME_DIR.resolve()))
class TestCustomThemeSimple:
def test_theme_set_on_startup_and_in_command_palette(self, snap_compare):
"""Check that the theme is set on startup and available in the command palette."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+p")
await pilot.press(*"them", "enter")
await disable_blink_for_active_cursors(pilot)
await pilot.press(*"atest")
await pilot.pause()
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_theme_sensible_defaults__url(self, snap_compare):
"""This theme doesn't specify explicit values for the URL
or variable highlights, so we should expect sensible
defaults to be used. These defaults should be drawn from the
semantic colours defined in the theme.
"""
env_path = str((ENV_DIR / "sample_base.env").resolve())
app = make_posting(
collection=SAMPLE_COLLECTIONS / "jsonplaceholder" / "todos",
env=(env_path,),
)
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+l", "right", *"/$lol/")
await pilot.press("ctrl+o", "w")
assert snap_compare(app, run_before=run_before, terminal_size=(100, 32))
def test_theme_sensible_defaults__json(self, snap_compare):
"""This theme doesn't explicitly declare JSON highlighting,
so lets ensure that sensible defaults are used.
"""
env_path = str((ENV_DIR / "sample_base.env").resolve())
app = make_posting(
collection=SAMPLE_COLLECTIONS / "jsonplaceholder",
env=(env_path,),
)
async def run_before(pilot: Pilot):
await pilot.press(*"jjj", "enter")
await pilot.press("ctrl+o", "w")
await pilot.press(*"jj")
await pilot.press("shift+down")
assert snap_compare(app, run_before=run_before, terminal_size=(100, 32))
@use_config("custom_theme2.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
@patch_env("POSTING_THEME_DIRECTORY", str(THEME_DIR.resolve()))
class TestCustomThemeComplex:
def test_highlighting_applied_from_custom_theme__url(self, snap_compare):
"""Ensure custom theme is applied correctly in the URL bar.
Resolved and unresolved variables should be highlighted based on the
theme. The chosen theme has some funky choices for the URL, so it should
be clear that the URL protocol, base, and separators are being highlighted
as expected.
"""
env_path = str((ENV_DIR / "sample_base.env").resolve())
app = make_posting(
collection=SAMPLE_COLLECTIONS / "jsonplaceholder" / "todos",
env=(env_path,),
)
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+l", "right", *"/$lol/")
await pilot.press("ctrl+o", "w")
assert snap_compare(app, run_before=run_before, terminal_size=(100, 32))
def test_highlighting_applied_from_custom_theme__json(self, snap_compare):
"""Ensure custom theme is applied correctly to TextAreas.
Ensure the gutter is coloured both foreground and background.
The cursor line and selection should also be coloured.
Ensure the JSON is being highlighted as expected - we would
expect the colours of JSON keys and values to match those of the
overall theme.
"""
env_path = str((ENV_DIR / "sample_base.env").resolve())
app = make_posting(
collection=SAMPLE_COLLECTIONS / "jsonplaceholder",
env=(env_path,),
)
async def run_before(pilot: Pilot):
await pilot.press(*"jjj", "enter")
await pilot.press("ctrl+o", "w")
await pilot.press(*"jj")
await pilot.press("shift+down")
assert snap_compare(app, run_before=run_before, terminal_size=(100, 32))
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestFocusAutoSwitchingConfig:
@pytest.mark.parametrize(
"focus_target",
[
"headers",
"body",
"query",
"url",
"method",
], # TODO: "info" has been removed, the path field causes test fails on CI
)
def test_focus_on_request_open__open_body(
self,
focus_target,
monkeypatch,
snap_compare,
):
"""Check that the expected tab is focused when a request is opened from the collection browser."""
monkeypatch.setenv("POSTING_FOCUS__ON_REQUEST_OPEN", focus_target)
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.pause() # wait for focus to switch
await pilot.wait_for_scheduled_animations()
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 60))
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestDisableRowInTable:
def test_disable_row_in_table(self, snap_compare):
"""Check that a row can be disabled in a table."""
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+o", "q")
await pilot.press("j", "j", "space", "j")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@pytest.mark.skip(
reason="These tests are flaky on CI as the notification doesnt show up."
)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestCurlExport:
def test_curl_export_no_setup(self, snap_compare):
"""Check that the curl export works when setup scripts are not run."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press("enter")
await pilot.press("ctrl+p", *"curl no setup", "enter")
await pilot.pause()
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_curl_export(self, snap_compare):
"""Check that the curl export works correctly."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press("enter")
await pilot.press("ctrl+p", *"curl", "enter")
await pilot.pause()
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestScripts:
def test_script_runs(self, snap_compare):
"""Check that a script runs correctly."""
async def run_before(pilot: Pilot):
await pilot.pause()
await pilot.press("enter")
await pilot.press("ctrl+j")
await pilot.app.workers.wait_for_complete()
await pilot.press("ctrl+o", "f") # jump to "Scripts"
await pilot.press("ctrl+m") # expand response section
assert snap_compare(POSTING_MAIN, run_before=run_before, terminal_size=(80, 34))
@use_config("general.yaml")
class TestHeaderAutoCompletion:
def test_header_name_auto_completion_list_appears(self, snap_compare):
"""Check that the header name auto completion list appears."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o", "q", "j", *"acc")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@pytest.mark.parametrize("key", ["tab", "enter", "escape"])
def test_header_name_auto_completion_list_appears_followed_by_keypress(
self, key: str, snap_compare
):
"""Check that the header name auto completion list appears and users can complete it.
If the key is enter, the completion should be selected and focus should remain in the name field.
If the key is tab, the completion should be selected and focus should move to the value field.
If the key is escape, the completion list should be closed and focus should remain in the name field.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o", "q", "j", *"acc", key)
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_header_value_auto_completion_list_appears(self, snap_compare):
"""Check that the header value auto completion list appears."""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o", "q", "j", *"CType", "tab")
await pilot.press(*"ajs")
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_header_value_auto_completion_list_accepts_selection(self, snap_compare):
"""Check that the header value auto completion list accepts selection.
Expect to see `application/json` in the value field for the header.
"""
async def run_before(pilot: Pilot):
await pilot.press("ctrl+o", "q", "j", *"CType", "tab")
await pilot.press(*"ajs")
await pilot.press("enter")
assert snap_compare(POSTING_MAIN, run_before=run_before)
@use_config("general.yaml")
@patch_env("POSTING_FOCUS__ON_STARTUP", "collection")
class TestEditKeyValues:
def test_edit_mode_displays_correctly(self, snap_compare):
"""Check that the UI looks correct when entering edit mode.
In this test, we're editing the first header row.
"""
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+o", "q") # Select "Headers" tab
await pilot.press("down")
await pilot.press("enter") # Begin editing the first header
assert snap_compare(POSTING_MAIN, run_before=run_before)
def test_edit_mode_can_edit_header_keys_and_values_as_expected(self, snap_compare):
"""The name of the first header should be X-Forwarded-For, and the value should be foo."""
async def run_before(pilot: Pilot):
await pilot.press("j", "j", "enter")
await pilot.press("ctrl+o", "q") # Select "Headers" tab
await pilot.press("down")
await pilot.press("enter") # Begin editing the first header
await pilot.press(
"x", "enter"
) # Accept the completion of "X-Forwarded-For"
await pilot.press("tab") # Move focus to the value field
await pilot.press(*"foo") # Change the value to "foo"
await pilot.press("enter") # Accept the change
assert snap_compare(POSTING_MAIN, run_before=run_before)
|