-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now jobs after grace period cannot be submitted using submit_job endpoint.
- Loading branch information
Showing
7 changed files
with
43 additions
and
2 deletions.
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
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
24 changes: 24 additions & 0 deletions
24
dao/tests/features/bid_escrow/hal-04-submitting-job-after-deadline.feature
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
Feature: Out of time submission | ||
The internal worker submits the job proof several days after the deadline. | ||
This is a presentation of HAL-04 issue fix. | ||
Background: | ||
Given following balances | ||
| account | CSPR balance | REP balance | REP stake | is_kyced | is_va | | ||
| BidEscrow | 1000 | 0 | 0 | false | false | | ||
| MultisigWallet | 0 | 0 | 0 | false | false | | ||
| JobPoster | 1000 | 0 | 0 | true | false | | ||
| InternalWorker | 0 | 1000 | 0 | true | true | | ||
| ExternalWorker | 500 | 0 | 0 | true | false | | ||
| VA1 | 0 | 1000 | 0 | true | true | | ||
| VA2 | 0 | 1000 | 0 | true | true | | ||
And following configuration | ||
| key | value | | ||
| TimeBetweenInformalAndFormalVoting | 0 | | ||
| VotingStartAfterJobSubmission | 0 | | ||
When JobPoster posted a JobOffer with expected timeframe of 14 days, maximum budget of 1000 CSPR and 400 CSPR DOS Fee | ||
And InternalWorker posted the Bid for JobOffer 0 with proposed timeframe of 7 days and 500 CSPR price and 100 REP stake | ||
And 8 days passed | ||
And ExternalWorker posted the Bid for JobOffer 0 with proposed timeframe of 7 days and 500 CSPR price and 100 CSPR stake with onboarding | ||
And JobPoster picked the Bid of InternalWorker | ||
And 130 days passed | ||
Then InternalWorker fails to submit the JobProof of Job 0 |
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