Added tests for wallet send events (#20547)
This commit is contained in:
parent
e2e8afb7b1
commit
4bd7abaace
|
@ -205,21 +205,22 @@
|
||||||
token-networks-ids (mapv #(:chain-id %) token-networks)
|
token-networks-ids (mapv #(:chain-id %) token-networks)
|
||||||
token-not-supported-in-receiver-networks? (not-any? (set receiver-networks)
|
token-not-supported-in-receiver-networks? (not-any? (set receiver-networks)
|
||||||
token-networks-ids)]
|
token-networks-ids)]
|
||||||
{:db (cond-> db
|
(when (or token token-symbol)
|
||||||
:always (update-in [:wallet :ui :send] dissoc :collectible)
|
{:db (cond-> db
|
||||||
:always (assoc-in [:wallet :ui :send :token-display-name]
|
:always (update-in [:wallet :ui :send] dissoc :collectible)
|
||||||
(:symbol token))
|
:always (assoc-in
|
||||||
:always (assoc-in
|
[:wallet :ui :send :token-not-supported-in-receiver-networks?]
|
||||||
[:wallet :ui :send :token-not-supported-in-receiver-networks?]
|
token-not-supported-in-receiver-networks?)
|
||||||
token-not-supported-in-receiver-networks?)
|
token (assoc-in [:wallet :ui :send :token] token)
|
||||||
token (assoc-in [:wallet :ui :send :token] token)
|
token (assoc-in [:wallet :ui :send :token-display-name]
|
||||||
token-symbol (assoc-in [:wallet :ui :send :token-symbol] token-symbol))
|
(:symbol token))
|
||||||
:fx [[:dispatch [:wallet/clean-suggested-routes]]
|
token-symbol (assoc-in [:wallet :ui :send :token-symbol] token-symbol))
|
||||||
[:dispatch
|
:fx [[:dispatch [:wallet/clean-suggested-routes]]
|
||||||
[:wallet/wizard-navigate-forward
|
[:dispatch
|
||||||
{:current-screen stack-id
|
[:wallet/wizard-navigate-forward
|
||||||
:start-flow? start-flow?
|
{:current-screen stack-id
|
||||||
:flow-id :wallet-send-flow}]]]})))
|
:start-flow? start-flow?
|
||||||
|
:flow-id :wallet-send-flow}]]]}))))
|
||||||
|
|
||||||
(rf/reg-event-fx
|
(rf/reg-event-fx
|
||||||
:wallet/edit-token-to-send
|
:wallet/edit-token-to-send
|
||||||
|
|
|
@ -0,0 +1,165 @@
|
||||||
|
(ns status-im.contexts.wallet.send.events-test
|
||||||
|
(:require
|
||||||
|
[cljs.test :refer-macros [is testing]]
|
||||||
|
[re-frame.db :as rf-db]
|
||||||
|
status-im.contexts.wallet.send.events
|
||||||
|
[test-helpers.unit :as h]))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/update-receiver-networks
|
||||||
|
[event-id dispatch]
|
||||||
|
(testing "reciever networks changed"
|
||||||
|
(let [selected-networks-before [:ethereum :optimism :arbitrum]
|
||||||
|
selected-networks-after [:ethereum :optimism]
|
||||||
|
expected-db {:wallet {:ui {:send {:receiver-networks selected-networks-after}}}}]
|
||||||
|
(reset! rf-db/app-db {:wallet {:ui {:send {:receiver-networks selected-networks-before}}}})
|
||||||
|
(is (match? expected-db (:db (dispatch [event-id selected-networks-after]))))))
|
||||||
|
|
||||||
|
(testing "if receiver network removed, it is also removed from disabled ones"
|
||||||
|
(let [selected-networks-before [:ethereum :optimism :arbitrum]
|
||||||
|
selected-networks-after [:ethereum :optimism]
|
||||||
|
disabled-from-chain-ids-before [:optimism :arbitrum]
|
||||||
|
disabled-from-chain-ids-after [:optimism]
|
||||||
|
expected-db {:wallet {:ui {:send {:receiver-networks selected-networks-after
|
||||||
|
:disabled-from-chain-ids
|
||||||
|
disabled-from-chain-ids-after}}}}]
|
||||||
|
(reset! rf-db/app-db {:wallet {:ui {:send {:receiver-networks selected-networks-before
|
||||||
|
:disabled-from-chain-ids
|
||||||
|
disabled-from-chain-ids-before}}}})
|
||||||
|
(is (match? expected-db (:db (dispatch [event-id selected-networks-after])))))))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/set-token-to-send
|
||||||
|
[event-id dispatch]
|
||||||
|
(let [token-symbol "ETH"
|
||||||
|
token {:symbol "ETH"
|
||||||
|
:name "Ether"
|
||||||
|
:networks #{{:chain-id 421614}
|
||||||
|
{:chain-id 11155420}
|
||||||
|
{:chain-id 11155111}}}
|
||||||
|
receiver-networks [421614 11155420]]
|
||||||
|
(testing "can be called with :token"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks receiver-networks}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-display-name token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? false}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:token token}])]
|
||||||
|
(is (match? expected-db (:db result)))))
|
||||||
|
(testing "can be called with :token-symbol"
|
||||||
|
(testing "can be called with :token"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks receiver-networks}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-symbol token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? true}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:token-symbol token-symbol}])]
|
||||||
|
(is (match? expected-db (:db result))))))
|
||||||
|
(testing "shouldn't have changes if called without :token or :token-symbol")
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks receiver-networks}}}}
|
||||||
|
expected-db nil
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {}])]
|
||||||
|
(is (match? expected-db (:db result))))
|
||||||
|
(testing "should clean :collectible set"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks receiver-networks
|
||||||
|
:collectible "some-collectible"}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-display-name token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? false}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:token token}])]
|
||||||
|
(is (match? expected-db (:db result)))
|
||||||
|
(is (match? nil (get-in result [:db :wallet :ui :send :collectible])))))
|
||||||
|
(testing "should set :token-not-supported-in-receiver-networks?"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks []}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-display-name token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? true}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:token token}])]
|
||||||
|
(is (match? expected-db (:db result)))))))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/edit-token-to-send
|
||||||
|
[event-id dispatch]
|
||||||
|
(let [token-symbol "ETH"
|
||||||
|
token {:symbol "ETH"
|
||||||
|
:name "Ether"
|
||||||
|
:networks #{{:chain-id 421614}
|
||||||
|
{:chain-id 11155420}
|
||||||
|
{:chain-id 11155111}}}
|
||||||
|
receiver-networks [421614 11155420]]
|
||||||
|
(testing "can be called with :token"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks receiver-networks
|
||||||
|
:token-display-name "DAI"
|
||||||
|
:token-not-supported-in-receiver-networks? true}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-display-name token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? false}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id token])]
|
||||||
|
(is (match? expected-db (:db result)))))
|
||||||
|
(testing "should set :token-not-supported-in-receiver-networks?"
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:receiver-networks []
|
||||||
|
:token-display-name "DAI"
|
||||||
|
:token-not-supported-in-receiver-networks? false}}}}
|
||||||
|
expected-db {:wallet {:ui {:send {:token-display-name token-symbol
|
||||||
|
:token-not-supported-in-receiver-networks? true}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id token])]
|
||||||
|
(is (match? expected-db (:db result)))))))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/set-collectible-to-send
|
||||||
|
[event-id dispatch]
|
||||||
|
(let
|
||||||
|
[collectible
|
||||||
|
{:data-type 2
|
||||||
|
:id
|
||||||
|
{:contract-id
|
||||||
|
{:chain-id 11155111
|
||||||
|
:address "0x1ed60fedff775d500dde21a974cd4e92e0047cc8"}
|
||||||
|
:token-id "15"}
|
||||||
|
:contract-type 3
|
||||||
|
:collectible-data
|
||||||
|
{:name "DOG #1"
|
||||||
|
:description
|
||||||
|
"dogs are cute and this one is the cutestdogs are cute and this one is the cutest"}
|
||||||
|
:collection-data
|
||||||
|
{:name "ERC-1155 Faucet"}
|
||||||
|
:ownership
|
||||||
|
[{:address "0xf90014b2027e584fc96e6f6c8078998fe46c5ccb"
|
||||||
|
:balance "1"
|
||||||
|
:tx-timestamp 1710331776}]
|
||||||
|
:preview-url
|
||||||
|
{:uri
|
||||||
|
"https://ipfs.io/ipfs/bafybeie7b7g7iibpac4k6ydw4m5ivgqw5vov7oyzlf4v5zoor57wokmsxy/isolated-happy-smiling-dog-white-background-portrait-4_1562-693.avif"}}
|
||||||
|
initial-db {:wallet {:ui {:send {:token {:symbol "ETH"}}}}}
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:collectible collectible}])]
|
||||||
|
(testing ":collectible field assigned"
|
||||||
|
(is (match? collectible (get-in result [:db :wallet :ui :send :collectible]))))
|
||||||
|
(testing ":token should be removed"
|
||||||
|
(is (match? nil (get-in result [:db :wallet :ui :send :token]))))
|
||||||
|
(testing ":token-display-name assigned"
|
||||||
|
(is (match? "DOG #1" (get-in result [:db :wallet :ui :send :token-display-name]))))
|
||||||
|
(testing ":tx-type assigned"
|
||||||
|
(is (match? :tx/collectible-erc-1155 (get-in result [:db :wallet :ui :send :tx-type]))))
|
||||||
|
(testing "amount set if collectible was single"
|
||||||
|
(is (match? 1 (get-in result [:db :wallet :ui :send :amount]))))))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/set-collectible-amount-to-send
|
||||||
|
[event-id dispatch]
|
||||||
|
(let [initial-db {:wallet {:ui {:send nil}}}
|
||||||
|
expected-fx [[:dispatch [:wallet/get-suggested-routes {:amount 10}]]
|
||||||
|
[:dispatch
|
||||||
|
[:wallet/wizard-navigate-forward
|
||||||
|
{:current-screen nil :flow-id :wallet-send-flow}]]]
|
||||||
|
amount 10
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:amount amount}])]
|
||||||
|
(testing "amount set"
|
||||||
|
(is (match? amount (get-in result [:db :wallet :ui :send :amount]))))
|
||||||
|
(testing "effects match"
|
||||||
|
(is (match? expected-fx (:fx result))))))
|
||||||
|
|
||||||
|
(h/deftest-event :wallet/set-token-amount-to-send
|
||||||
|
[event-id dispatch]
|
||||||
|
(let [initial-db {:wallet {:ui {:send {:token {:symbol "ETH"}}}}}
|
||||||
|
amount 10
|
||||||
|
_ (reset! rf-db/app-db initial-db)
|
||||||
|
result (dispatch [event-id {:amount amount}])]
|
||||||
|
(testing "amount set"
|
||||||
|
(is (match? amount (get-in result [:db :wallet :ui :send :amount]))))))
|
Loading…
Reference in New Issue