sapling/eden/scm/tests/test-hgsql-repolock.t
Jun Wu 780faa2c10 tests: replace print in debugshell with ui.write
Summary:
Similar to D18926784.

Mercurial makes sure content written by `ui.write` is flushed, while there is
no such guarantee for `print`. When running using chg, it's more likely that
`print` content gets disappeared. Therefore let's use `ui.write` instead.

Reviewed By: ikostia

Differential Revision: D18926983

fbshipit-source-id: 960c189cc48bc3c89bb4f7993d2033dd45c52a67
2019-12-13 10:30:39 -08: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