sapling/eden/scm/tests/test-hgsql-repolock.t
Durham Goode 74da65a38f py3: reupgrade mysql-connector-python to yummy version
Summary:
This is required for migrating to python 3. Originally this broke
builds on non-fbcode centos7 platforms. Since we don't need hgsql in non-fbcode
platforms, I've just tweaked it to skip the hgsql tests for non-fbcode centos7.

Reviewed By: quark-zju

Differential Revision: D22140187

fbshipit-source-id: 01676db9d006375bd3b5ae9e8f13f5592e36b074
2020-06-19 15:25:26 -07:00

79 lines
4.0 KiB
Raku

$ . "$TESTDIR/hgsql/library.sh"
$ initserver master masterrepo
$ cd master
Check that a repo without an entry is treated as RW
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(False, 'no reason was provided')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
False
Set the repo to RO for hg and mononoke
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state) VALUES ("masterrepo", 0)'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'no reason was provided')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set another repo to RW for hg and check that masterrepo is still RO
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state) VALUES ("masterrepo2", 1)'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'no reason was provided')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set the repo to RW for Mononoke only
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state) VALUES ("masterrepo", 2)'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'writes are being served by Mononoke (fburl.com/mononoke)')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set the repo to RW for hg only
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state) VALUES ("masterrepo", 1)'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(False, 'no reason was provided')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
False
Set the repo to RO again
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state) VALUES ("masterrepo", 0)'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'no reason was provided')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set the repo to RO for hg and mononoke (with reason)
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state, reason) VALUES ("masterrepo", 0, "reason123")'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'reason123')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set another repo to RW (with reason) for hg and check that masterrepo is still RO
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state, reason) VALUES ("masterrepo2", 1, "reason456")'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'reason123')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set the repo to RW for Mononoke only (with reason)
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state, reason) VALUES ("masterrepo", 2, "reason123")'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'reason123')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True
Set the repo to RW for hg only (with reason)
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state, reason) VALUES ("masterrepo", 1, "reason123")'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(False, 'reason123')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
False
Set the repo to RO again (with reason)
$ mysql -h $DBHOST -P $DBPORT -D $DBNAME -u $DBUSER $DBPASSOPT -e 'REPLACE INTO repo_lock(repo, state, reason) VALUES ("masterrepo", 0, "reason123")'
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlreporeadonlystate()))"
(True, 'reason123')
$ hg debugshell -c "ui.write('%s\n' % str(repo.sqlisreporeadonly()))"
True