-
Notifications
You must be signed in to change notification settings - Fork 6
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
Fix API tests flakiness #454
Conversation
Kishan-Dhakan
commented
Oct 14, 2022
•
edited
Loading
edited
- Closes Blobber: /v1/file/referencepath & objecttree API tests and doc review #338
@@ -11,20 +11,11 @@ import ( | |||
) | |||
|
|||
func TestBlobberFileRefs(t *testing.T) { | |||
t.Parallel() |
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.
Can't we still make this test run parallely along with making gosdk using one wallet at a time.
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.
I already left a comment on this. Yes, we can, cause @Kishan-Dhakan has fixed synchronization of actions for sdk client.
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.
It causes nonce related errors in running them in parallel. So I'm keeping them sequential for now. Since we plan on removing gosdk dependency soon anyhow.
t := new(testing.T) | ||
|
||
sdkWalletMnemonics = crypto.GenerateMnemonics(t) | ||
sdkWallet = apiClient.RegisterWalletForMnemonic(t, sdkWalletMnemonics) | ||
sdkClient.SetWallet(t, sdkWallet, sdkWalletMnemonics) | ||
|
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.
I think this decesion to register a wallet only once for sdk client is a good way to go, but also it's better to make this "initialization" in a separate function. It's a minor change
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.
Okay, agreed. Will refactor
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.
every test should have it's own independent setup eg. wallet and allocation, else a single shared wallet will cause issues with token accounting tests
I think this is again trying to avoid the issue of static globals rather than solving it
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.
Look into multiple instantiation of the gosdk - if we can't do this then it is a serious deficiency in the gosdk itself - how do we ever expect anyone other than a hobbyist to use it?
…_test into fix/use-one-wallet
@stewartie4 Created an issue for it here: 0chain/gosdk#642, since we can only test code as it is for now, we should get these tests in before mainnet. |
Agreed, I was hoping it would be a quick fix in test code, but as it is not we can keep this for now |