-
Notifications
You must be signed in to change notification settings - Fork 682
Conversation
Hi @PhABC, Thanks for submitting this! Unfortunately, unless there's a specific reason why a fix to #390 won't work for your testing/development work, I'd rather accept a fix to that issue than an explicit That is, a user should be able to call Can I request that you please either explain why the above workflow won't work for your use case, or rework this change to fix that issue? |
@roderik since you reacted to this PR positively, please feel free to pipe up and say why you'd like to see this change go through. I'm very happy to accept if people need it - just want to make sure that it's not already covered by existing plans. |
I need it to test different stages in a crowdsale. Now I have to make 1 huge test with jumps between the tests for specific periods. Different test files do not work because it "reset" everything, except the time. |
@roderik could you elaborate, please? By any chance is your code open? A link to a repo or a gist would help my feeble mind tremendously! 😄 |
@benjamincburns Thank you for the response! I believe trufflesuite/ganache-cli#390 is fixed in this Pull Request (see my comments on that pull request). I'm in favor of either method. |
Sure, look at this repo: https://github.com/DataBrokerDAO/dtx-crowdsale-contracts I like my source files small, so it is more easy to get an overview of what is happening. Which means I would make lots of test files with specific things I wanted to test. But multiple tests run at a random order. So if the first test that runs is one that jumps in time, all the other tests would run at that time in the future. So If i wanted to test "cannot contribute before the sale" and "can contribute during the sale", it would be total guess work if they would work, because this depends if the "during saler" test runs first because it jumps ahead in time. While the entire idea of the snapshots is that you start "clean" (but still faster than redeploy every time) at the beginning of each file. |
@roderik as an aside, I've suggested internally that a cleaner approach to this might be if our tests were to use the forking feature of I'll raise it again during our next internal planning meeting. |
No, seems fine, do not have anything to test it on right now :) |
@roderik I think you were the only one still advocating for this issue now that #2 is merged. Can you please reach out to me at ben@trufflesuite.com if this is still important to you? Otherwise in the mean time I'm closing this to clean up our backlog some. |
I would find this useful for gas-profiling contracts where a timestamp is passed as a parameter, because the zeroeness of the bytes of the timestamp affect the gas consumption. I can then profile as if it was way in the past without reconfiguring ganache for just this test. Instead of |
It's currently hard to perform tests that are timestamp dependent since the timestamp changes between tests are shared (E.g. see #2, Ganache-cli-issue-390 and here) . Using
evm_increaseTime
leads to non-reversible timestamp changes that persist through all the tests.Adding
evm_decreaseTime
allow developers to revert the timestamp change after each test, using a logic such as