Peter-Frank Spierenburg
Peter-Frank Spierenburg
Who are the owners and what are the permissions on the files? That appears to be where my system is stumbling.
I tried your config. (All files owned by root with normal permissions: ``` # docker-compose up mosquitto Creating mosquitto_broker ... done Attaching to mosquitto_broker mosquitto_broker | chown: /mosquitto: Permission denied...
For quick reference, here is my integration test. ``` package demo import grails.plugins.rest.client.RestResponse import grails.plugins.rest.client.RestBuilder import grails.testing.mixin.integration.Integration import grails.transaction.* import spock.lang.Shared import spock.lang.Specification import grails.plugin.springsecurity.ui.RegistrationCode @Integration @Rollback class VerifyRegistrationSpec extends...
Interestingly, the test passes if I call uiRegistrationCodeStrategy.finishRegistration explicitly: ``` void "test something"() { given:"a user account is created and assigned a registration code" def user = new User(username:"username", password:"password",...
I've updated the test in my demo project, but I get the same result. I changed both the url as you suggested, and turned the integration test into a functional...