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

Test rollback document suggested modification #699

Open
wants to merge 1 commit into
base: 3.2.x
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/en/guide/testing/integrationTesting.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ class ExampleSpec extends Specification {

The `Rollback` annotation ensures that each test method runs in a transaction that is rolled back. Generally this is desirable because you do not want your tests depending on order or application state.

In Grails 3.0 tests rely on `grails.transaction.Rollback` annotation to bind the session in integration tests. Though each test method transaction is rolled back, the `setup()` method uses a separate transaction that is not rolled back.
In Grails 3.0 tests rely on `grails.transaction.Rollback` annotation to bind the session in integration tests. Though each test method transaction is rolled back, the `setup()` method uses a separate transaction that is not rolled back and the `setup()` method will be executed automatically when the tests is executed.

Choose a reason for hiding this comment

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

I think this ... is not rolled back and the setup()... should be broken into a sentence like this:

is not rolled back. The setup()


Data will persist to the database and will need to be cleaned up manually if `setup()` sets up data and persists them as shown in the below sample:

[source,groovy]
Expand Down Expand Up @@ -72,6 +73,11 @@ import spock.lang.*
@Integration
@Rollback
class BookSpec extends Specification {

void setup() {
// Do not use this method

Choose a reason for hiding this comment

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

These two lines should not be commented out in the example, and the comment should be
// This line will not roll back

// new Book(name: 'Grails in Action').save(flush: true)
}

void setupData() {
// Below line would roll back
Expand Down