1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-18 20:59:39 +02:00
Maybe/test/system/imports_test.rb
Zach Gollwitzer 90a9546f32
Pre-launch design sync with Figma spec (#2154)
* Add lookbook + viewcomponent, organize design system file

* Build menu component

* Button updates

* More button fixes

* Replace all menus with new ViewComponent

* Checkpoint: fix tests, all buttons and menus converted

* Split into Link and Button components for clarity

* Button cleanup

* Simplify custom confirmation configuration in views

* Finalize button, link component API

* Add toggle field to custom form builder + Component

* Basic tabs component

* Custom tabs, convert all menu / tab instances in app

* Gem updates

* Centralized icon helper

* Update all icon usage to central helper

* Lint fixes

* Centralize all disclosure instances

* Dialog replacements

* Consolidation of all dialog styles

* Test fixes

* Fix app layout issues, move to component with slots

* Layout simplification

* Flakey test fix

* Fix dashboard mobile issues

* Finalize homepage

* Lint fixes

* Fix shadows and borders in dark mode

* Fix tests

* Remove stale class

* Fix filled icon logic

* Move transparent? to public interface
2025-04-30 18:14:22 -04:00

193 lines
4.1 KiB
Ruby

require "application_system_test_case"
class ImportsTest < ApplicationSystemTestCase
include ActiveJob::TestHelper
setup do
sign_in @user = users(:family_admin)
# Trade securities will be imported as "offline" tickers
Security.stubs(:provider).returns(nil)
end
test "transaction import" do
visit new_import_path
click_on "Import transactions"
within_testid("import-tabs") do
click_on "Copy & Paste"
end
fill_in "import[raw_file_str]", with: file_fixture("imports/transactions.csv").read
within "form" do
click_on "Upload CSV"
end
select "Date", from: "import[date_col_label]"
select "YYYY-MM-DD", from: "import[date_format]"
select "Amount", from: "import[amount_col_label]"
select "Account", from: "import[account_col_label]"
select "Name", from: "import[name_col_label]"
select "Category", from: "import[category_col_label]"
select "Tags", from: "import[tags_col_label]"
select "Notes", from: "import[notes_col_label]"
click_on "Apply configuration"
click_on "Next step"
assert_selector "h1", text: "Assign your categories"
click_on "Next"
assert_selector "h1", text: "Assign your tags"
click_on "Next"
assert_selector "h1", text: "Assign your accounts"
click_on "Next"
click_on "Publish import"
assert_text "Import in progress"
perform_enqueued_jobs
click_on "Check status"
assert_text "Import successful"
click_on "Back to dashboard"
end
test "trade import" do
visit new_import_path
click_on "Import investments"
within_testid("import-tabs") do
click_on "Copy & Paste"
end
fill_in "import[raw_file_str]", with: file_fixture("imports/trades.csv").read
within "form" do
click_on "Upload CSV"
end
select "date", from: "import[date_col_label]"
select "YYYY-MM-DD", from: "import[date_format]"
select "qty", from: "import[qty_col_label]"
select "ticker", from: "import[ticker_col_label]"
select "price", from: "import[price_col_label]"
select "account", from: "import[account_col_label]"
click_on "Apply configuration"
click_on "Next step"
assert_selector "h1", text: "Assign your accounts"
click_on "Next"
click_on "Publish import"
assert_text "Import in progress"
perform_enqueued_jobs
click_on "Check status"
assert_text "Import successful"
click_on "Back to dashboard"
end
test "account import" do
visit new_import_path
click_on "Import accounts"
within_testid("import-tabs") do
click_on "Copy & Paste"
end
fill_in "import[raw_file_str]", with: file_fixture("imports/accounts.csv").read
within "form" do
click_on "Upload CSV"
end
select "type", from: "import[entity_type_col_label]"
select "name", from: "import[name_col_label]"
select "amount", from: "import[amount_col_label]"
click_on "Apply configuration"
click_on "Next step"
assert_selector "h1", text: "Assign your account types"
all("form").each do |form|
within(form) do
select = form.find("select")
select "Depository", from: select["id"]
sleep 0.5
end
end
click_on "Next"
click_on "Publish import"
assert_text "Import in progress"
perform_enqueued_jobs
click_on "Check status"
assert_text "Import successful"
click_on "Back to dashboard"
end
test "mint import" do
visit new_import_path
click_on "Import from Mint"
within_testid("import-tabs") do
click_on "Copy & Paste"
end
fill_in "import[raw_file_str]", with: file_fixture("imports/mint.csv").read
within "form" do
click_on "Upload CSV"
end
click_on "Apply configuration"
click_on "Next step"
assert_selector "h1", text: "Assign your categories"
click_on "Next"
assert_selector "h1", text: "Assign your tags"
click_on "Next"
assert_selector "h1", text: "Assign your accounts"
click_on "Next"
click_on "Publish import"
assert_text "Import in progress"
perform_enqueued_jobs
click_on "Check status"
assert_text "Import successful"
click_on "Back to dashboard"
end
end