]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
tests: fix parallel tests
authorDaniel Axtens <dja@axtens.net>
Tue, 22 Jun 2021 15:03:19 +0000 (01:03 +1000)
committerDaniel Axtens <dja@axtens.net>
Wed, 23 Jun 2021 01:16:43 +0000 (11:16 +1000)
Parallel tests require:

 - the % wildcard to be in a token enclosed by backticks, not single
   quotes

 - that the user still be able to use 'test_patchwork' (so we don't want
   the \_ before the %)

Presumably this was skipped because if you get permissions working
manually but you miss part of the required permissions in the automated
script, you need to delete the old db data in order to observe the
issue.

Amusingly postgres worked the whole time.

Fixes: 6025f0e2533f ("Add parallel testing")
Signed-off-by: Daniel Axtens <dja@axtens.net>
tools/docker/entrypoint.sh

index 8f7ea4f70219ef9ce0e84a72ffb70dee1fa686ec..5450a535e956196fa22431c059e3674cd2065325 100755 (executable)
@@ -26,7 +26,7 @@ reset_data_mysql() {
 DROP DATABASE IF EXISTS patchwork;
 CREATE DATABASE patchwork CHARACTER SET utf8;
 GRANT ALL ON patchwork.* TO 'patchwork' IDENTIFIED BY 'password';
-GRANT ALL ON 'test_patchwork\_%'.* to 'patchwork'@'%';
+GRANT ALL ON \`test\\_patchwork%\`.* to 'patchwork'@'%';
 FLUSH PRIVILEGES;
 EOF
 }