Commit 929143e3 authored by Boxiang Sun's avatar Boxiang Sun

theia: peertube test fixup

parent bd007c64
...@@ -253,28 +253,33 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience): ...@@ -253,28 +253,33 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience):
postgresql_partition = self._getPeertubePartitionPath('export', 'postgres') postgresql_partition = self._getPeertubePartitionPath('export', 'postgres')
postgresql_bin = os.path.join(postgresql_partition, 'bin', 'psql') postgresql_bin = os.path.join(postgresql_partition, 'bin', 'psql')
postgres_bin = os.path.join(postgresql_partition, 'bin', 'postgres') postgres_bin = os.path.join(postgresql_partition, 'bin', 'postgres')
postgresql_srv = self.getPartitionPath(postgresql_partition, 'postgresql')
# Change the email address of the user 'peertube' # Change the email address of the user 'peertube'
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'UPDATE "user" SET "email"=\'aaa\' WHERE "username"=\'root\''), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'UPDATE "user" SET "email"=\'aaa\' WHERE "username"=\'root\''),
universal_newlines=True) universal_newlines=True)
self.assertIn("UPDATE", output) self.assertIn("UPDATE", output)
# Checked the modification has been updated in the database # Checked the modification has been updated in the database
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'SELECT * FROM "user"'), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'SELECT * FROM "user"'),
universal_newlines=True) universal_newlines=True)
self.assertIn("aaa", output) self.assertIn("aaa", output)
# Change the email address of the user 'peertube' # Change the email address of the user 'peertube'
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'UPDATE "user" SET "email"=\'bbb\' WHERE "username"=\'root\''), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'UPDATE "user" SET "email"=\'bbb\' WHERE "username"=\'root\''),
universal_newlines=True) universal_newlines=True)
self.assertIn("UPDATE", output) self.assertIn("UPDATE", output)
# Checked the modification has been updated in the database # Checked the modification has been updated in the database
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'SELECT * FROM "user"'), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'SELECT * FROM "user"'),
universal_newlines=True) universal_newlines=True)
self.assertIn("bbb", output) self.assertIn("bbb", output)
...@@ -316,10 +321,12 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience): ...@@ -316,10 +321,12 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience):
postgresql_partition = self._getPeertubePartitionPath('export', 'postgres') postgresql_partition = self._getPeertubePartitionPath('export', 'postgres')
postgresql_bin = os.path.join(postgresql_partition, 'bin', 'psql') postgresql_bin = os.path.join(postgresql_partition, 'bin', 'psql')
postgres_bin = os.path.join(postgresql_partition, 'bin', 'postgres') postgres_bin = os.path.join(postgresql_partition, 'bin', 'postgres')
postgresql_srv = self.getPartitionPath(postgresql_partition, 'postgresql')
# Check that the mariadb catalog is not yet restored # Check that the mariadb catalog is not yet restored
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'SELECT * FROM "user"'), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'SELECT * FROM "user"'),
universal_newlines=True) universal_newlines=True)
self.assertNotIn("bbb", output) self.assertNotIn("bbb", output)
...@@ -340,7 +347,8 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience): ...@@ -340,7 +347,8 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience):
# Check that the postgresql catalog was properly restored # Check that the postgresql catalog was properly restored
output = subprocess.check_output( output = subprocess.check_output(
(postgresql_bin, '-c', 'SELECT * FROM "user"'), (postgresql_bin, '-h', postgresql_srv, '-U', 'peertube', '-d', 'peertube_prod',
'-c', 'SELECT * FROM "user"'),
universal_newlines=True) universal_newlines=True)
self.assertIn("bbb", output) self.assertIn("bbb", output)
...@@ -363,3 +371,8 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience): ...@@ -363,3 +371,8 @@ class TestTheiaResiliencePeertube(test_resiliency.TestTheiaResilience):
partition = self._getPeertubePartition(servicename) partition = self._getPeertubePartition(servicename)
return self.getPartitionPath( return self.getPartitionPath(
instance_type, 'srv', 'runner', 'instance', partition, *paths) instance_type, 'srv', 'runner', 'instance', partition, *paths)
def _getPostgresSrvPartitionPath(self, instance_type, servicename, *paths):
partition = self._getPeertubePartition(servicename)
return self.getPartitionPath(
instance_type, 'srv', 'runner', 'instance', partition, *paths)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment