-
Notifications
You must be signed in to change notification settings - Fork 213
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add transaction expiry slot for pending transactions #1879
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
52008cc
swagger.yaml: Add transaction expires_at and expired status
rvl 1b83368
Add transaction expiry slot for pending transactions
rvl e0f788b
tests: add TRANS_CREATE_10 - Pending transaction expiry
rvl 932409b
Rename ApiTimeReference -> ApiTimeReferenceWithBlock
rvl f54c3ed
Add epoch and local slot index to tx expiry slot reference
rvl 4119672
Rename updatePendingTx to updatePendingTxForExpiry
rvl 7db4d33
Add default TTL constant to tests DSL
rvl 6183cd6
Straighten out slot and block references in API
rvl 327e021
Update golden API files because the time field is added
rvl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,6 @@ import Cardano.Wallet.Api.Types | |
, WalletStyle (..) | ||
, insertedAt | ||
, pendingSince | ||
, time | ||
) | ||
import Cardano.Wallet.Primitive.AddressDerivation | ||
( PaymentAddress ) | ||
|
@@ -94,6 +93,7 @@ import Test.Integration.Framework.DSL | |
, Headers (..) | ||
, Payload (..) | ||
, between | ||
, defaultTxTTL | ||
, emptyByronWalletWith | ||
, emptyRandomWallet | ||
, emptyWallet | ||
|
@@ -593,6 +593,35 @@ spec = describe "SHELLEY_TRANSACTIONS" $ do | |
(#balance . #available) | ||
(`shouldBe` Quantity (faucetAmt - feeEstMax - amt)) ra2 | ||
|
||
it "TRANS_CREATE_10 - Pending transaction expiry" $ \ctx -> do | ||
(wa, wb) <- (,) <$> fixtureWallet ctx <*> fixtureWallet ctx | ||
let amt = minUTxOValue :: Natural | ||
|
||
payload <- mkTxPayload ctx wb amt fixturePassphrase | ||
|
||
r <- request @(ApiTransaction n) ctx | ||
(Link.createTransaction @'Shelley wa) Default payload | ||
|
||
verify r | ||
[ expectSuccess | ||
, expectResponseCode HTTP.status202 | ||
, expectField (#direction . #getApiT) (`shouldBe` Outgoing) | ||
, expectField (#status . #getApiT) (`shouldBe` Pending) | ||
, expectField #expiresAt (`shouldSatisfy` isJust) | ||
] | ||
|
||
-- This stuff would be easier with Control.Lens... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Are we tracking that in a technical debt ticket 🤔 ? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, because I sent a message about this to slack, and got exactly 0 replies. |
||
|
||
-- Get insertion slot and out of response. | ||
let (_, Right apiTx) = r | ||
let Just sl = view (#absoluteSlotNumber . #getApiT) <$> apiTx ^. #pendingSince | ||
|
||
-- The expected expiry slot (adds the hardcoded default ttl) | ||
let ttl = sl + defaultTxTTL | ||
|
||
(view #absoluteSlotNumber <$> (apiTx ^. #expiresAt)) | ||
`shouldBe` Just (ApiT ttl) | ||
|
||
it "TRANSMETA_CREATE_01 - Transaction with metadata" $ \ctx -> do | ||
(wa, wb) <- (,) <$> fixtureWallet ctx <*> emptyWallet ctx | ||
let amt = (minUTxOValue :: Natural) | ||
|
@@ -1520,7 +1549,7 @@ spec = describe "SHELLEY_TRANSACTIONS" $ do | |
, replicate 10 (2 * minUTxOValue) | ||
] | ||
txs <- listAllTransactions @n ctx w | ||
let [Just t2, Just t1] = fmap (fmap time . insertedAt) txs | ||
let [Just t2, Just t1] = fmap (fmap (view #time) . insertedAt) txs | ||
let matrix :: [TestCase [ApiTransaction n]] = | ||
[ TestCase -- 1 | ||
{ query = toQueryString | ||
|
@@ -2538,7 +2567,7 @@ spec = describe "SHELLEY_TRANSACTIONS" $ do | |
:: [ApiTransaction n] | ||
-> UTCTime | ||
unsafeGetTransactionTime txs = | ||
case fmap time . insertedAt <$> txs of | ||
case fmap (view #time) . insertedAt <$> txs of | ||
(Just t):_ -> t | ||
_ -> error "Expected at least one transaction with a time." | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍