Skip to content
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

Merged
merged 25 commits into from
Nov 9, 2022
Merged

Fix API tests flakiness #454

merged 25 commits into from
Nov 9, 2022

Conversation

Kishan-Dhakan
Copy link
Contributor

@Kishan-Dhakan Kishan-Dhakan commented Oct 14, 2022

@@ -11,20 +11,11 @@ import (
)

func TestBlobberFileRefs(t *testing.T) {
t.Parallel()
Copy link
Contributor

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.

Copy link
Collaborator

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.

Copy link
Contributor Author

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.

Comment on lines +33 to +38
t := new(testing.T)

sdkWalletMnemonics = crypto.GenerateMnemonics(t)
sdkWallet = apiClient.RegisterWalletForMnemonic(t, sdkWalletMnemonics)
sdkClient.SetWallet(t, sdkWallet, sdkWalletMnemonics)

Copy link
Collaborator

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, agreed. Will refactor

Copy link
Contributor

@stewartie4 stewartie4 Oct 16, 2022

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

Copy link
Contributor

@stewartie4 stewartie4 left a 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?

@Kishan-Dhakan
Copy link
Contributor Author

Kishan-Dhakan commented Nov 8, 2022

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?

@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.

@stewartie4
Copy link
Contributor

stewartie4 commented Nov 9, 2022

Agreed, I was hoping it would be a quick fix in test code, but as it is not we can keep this for now

@Kishan-Dhakan Kishan-Dhakan merged commit 29e4858 into master Nov 9, 2022
@Kishan-Dhakan Kishan-Dhakan deleted the fix/use-one-wallet branch November 9, 2022 16:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Blobber: /v1/file/referencepath & objecttree API tests and doc review
4 participants