You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Description
Closes: #9404
---
### Author Checklist
*All items are required. Please add a note to the item if the item is not applicable and
please add links to any relevant follow up issues.*
I have...
- [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] added `!` to the type prefix if API or client breaking change
- [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting))
- [x] provided a link to the relevant issue or specification
- [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules)
- [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing)
- [ ] added a changelog entry to `CHANGELOG.md`
- [ ] included comments for [documenting Go code](https://blog.golang.org/godoc)
- [ ] updated the relevant documentation or specification
- [x] reviewed "Files changed" and left comments if necessary
- [x] confirmed all CI checks have passed
### Reviewers Checklist
*All items are required. Please add a note if the item is not applicable and please add
your handle next to the items reviewed if you only reviewed selected items.*
I have...
- [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title
- [ ] confirmed `!` in the type prefix if API or client breaking change
- [ ] confirmed all author checklist items have been addressed
- [ ] reviewed state machine logic
- [ ] reviewed API design and naming
- [ ] reviewed documentation is accurate
- [ ] reviewed tests and test coverage
- [ ] manually tested (if applicable)
Acceptance tests are written in the Markdown format, using the scenario template described above, and be part of the specification (`xx_test.md` file in _spec_ directory). Example: (`eco-credits/spec/06.test.md`)[https://github.com/regen-network/regen-ledger/blob/7297783577e6cd102c5093365b573163680f36a1/x/ecocredit/spec/06_tests.md]
84
+
Acceptance tests are written in the Markdown format, using the scenario template described above, and be part of the specification (`xx_test.md` file in *spec* directory). Example: [`eco-credits/spec/06.test.md`](https://github.com/regen-network/regen-ledger/blob/7297783577e6cd102c5093365b573163680f36a1/x/ecocredit/spec/06_tests.md).
85
85
86
86
Acceptance tests should be defined during the design phase or at an early stage of development. Moreover, they should be defined before writing a module architecture - it will clarify the purpose and usage of the software.
87
87
Automated tests should cover all acceptance tests scenarios.
@@ -90,11 +90,11 @@ Automated tests should cover all acceptance tests scenarios.
90
90
91
91
Make sure your code is well tested:
92
92
93
-
+ Provide unit tests for every unit of your code if possible. Unit tests are expected to comprise 70%-80% of your tests.
94
-
+ Describe the test scenarios you are implementing for integration tests.
95
-
+ Create integration tests for queries and msgs.
96
-
+ Use both test cases and property / fuzzy testing. We use the [rapid](pgregory.net/rapid) Go library for property-based and fuzzy testing.
97
-
+ Do not decrease code test coverage. Explain in a PR if test coverage is decreased.
93
+
* Provide unit tests for every unit of your code if possible. Unit tests are expected to comprise 70%-80% of your tests.
94
+
* Describe the test scenarios you are implementing for integration tests.
95
+
* Create integration tests for queries and msgs.
96
+
* Use both test cases and property / fuzzy testing. We use the [rapid](pgregory.net/rapid) Go library for property-based and fuzzy testing.
97
+
* Do not decrease code test coverage. Explain in a PR if test coverage is decreased.
98
98
99
99
We expect tests to use `require` or `assert` rather than `t.Skip` or `t.Fail`,
100
100
unless there is a reason to do otherwise.
@@ -122,31 +122,31 @@ for tcIndex, tc := range cases {
122
122
123
123
We are forming a QA team that will support the core Cosmos SDK team and collaborators by:
124
124
125
-
- Improving the Cosmos SDK QA Processes
126
-
- Improving automation in QA and testing
127
-
- Defining high-quality metrics
128
-
- Maintaining and improving testing frameworks (unit tests, integration tests, and functional tests)
129
-
- Defining test scenarios.
130
-
- Verifying user experience and defining a high quality.
131
-
- We want to have **acceptance tests**! Document and list acceptance lists that are implemented and identify acceptance tests that are still missing.
132
-
- Acceptance tests should be specified in `acceptance-tests` directory as Markdown files.
133
-
- Supporting other teams with testing frameworks, automation, and User Experience testing.
134
-
- Testing chain upgrades for every new breaking change.
135
-
- Defining automated tests that assure data integrity after an update.
125
+
* Improving the Cosmos SDK QA Processes
126
+
* Improving automation in QA and testing
127
+
* Defining high-quality metrics
128
+
* Maintaining and improving testing frameworks (unit tests, integration tests, and functional tests)
129
+
* Defining test scenarios.
130
+
* Verifying user experience and defining a high quality.
131
+
* We want to have **acceptance tests**! Document and list acceptance lists that are implemented and identify acceptance tests that are still missing.
132
+
* Acceptance tests should be specified in `acceptance-tests` directory as Markdown files.
133
+
* Supporting other teams with testing frameworks, automation, and User Experience testing.
134
+
* Testing chain upgrades for every new breaking change.
135
+
* Defining automated tests that assure data integrity after an update.
136
136
137
137
Desired outcomes:
138
138
139
-
- QA team works with Development Team.
140
-
- QA is happening in parallel with Core Cosmos SDK development.
141
-
- Releases are more predictable.
142
-
- QA reports. Goal is to guide with new tasks and be one of the QA measures.
139
+
* QA team works with Development Team.
140
+
* QA is happening in parallel with Core Cosmos SDK development.
141
+
* Releases are more predictable.
142
+
* QA reports. Goal is to guide with new tasks and be one of the QA measures.
143
143
144
144
As a developer, you must help the QA team by providing instructions for User Experience (UX) and functional testing.
145
145
146
146
### QA Team to cross check Acceptance Tests
147
147
148
148
Once the AT are defined, the QA team will have an overview of the behavior a user can expect and:
149
149
150
-
- validate the user experience will be good
151
-
- validate the implementation conforms the acceptance tests
152
-
- by having a broader overview of the use cases, QA team should be able to define **test suites** and test data to efficiently automate Acceptance Tests and reuse the work.
150
+
* validate the user experience will be good
151
+
* validate the implementation conforms the acceptance tests
152
+
* by having a broader overview of the use cases, QA team should be able to define **test suites** and test data to efficiently automate Acceptance Tests and reuse the work.
0 commit comments