Exemplo n.º 1
0
 def test_pr_databases_not_specified(self):
     """
     Does the PR specify whether databases should be ephemeral or persistent?
     """
     pr_body = '* [LMS](http://sandbox.example.com)'
     domain = 'sandbox.example.com'
     self.assertIsNone(github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))
Exemplo n.º 2
0
 def test_pr_persistent_databases(self):
     """
     Should the sandbox use persistent databases?
     """
     pr_body = '* [LMS](http://sandbox.example.com) (persistent databases, please)'
     domain = 'sandbox.example.com'
     self.assertFalse(github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))
Exemplo n.º 3
0
 def test_pr_databases_not_specified(self):
     """
     Does the PR specify whether databases should be ephemeral or persistent?
     """
     pr_body = '* [LMS](http://sandbox.example.com)'
     domain = 'sandbox.example.com'
     self.assertIsNone(
         github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))
Exemplo n.º 4
0
 def test_pr_persistent_databases(self):
     """
     Should the sandbox use persistent databases?
     """
     pr_body = '* [LMS](http://sandbox.example.com) (persistent databases, please)'
     domain = 'sandbox.example.com'
     self.assertFalse(
         github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))
Exemplo n.º 5
0
 def test_pr_ephemeral_databases(self):
     """
     Should the sandbox use ephemeral databases?
     """
     pr_body = ('**JIRA Ticket:** https://openedx.atlassian.net/browse/YONK-83\r\n'
                '**Sandbox:** [LMS](http://pr9848.sandbox.opencraft.com/), '
                '[Studio](http://studio-pr9848.sandbox.opencraft.com/) (ephemeral database)\r\n')
     domain = 'studio-pr9848.sandbox.opencraft.com'
     self.assertTrue(github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))
Exemplo n.º 6
0
 def test_pr_ephemeral_databases(self):
     """
     Should the sandbox use ephemeral databases?
     """
     pr_body = (
         '**JIRA Ticket:** https://openedx.atlassian.net/browse/YONK-83\r\n'
         '**Sandbox:** [LMS](http://pr9848.sandbox.opencraft.com/), '
         '[Studio](http://studio-pr9848.sandbox.opencraft.com/) (ephemeral database)\r\n'
     )
     domain = 'studio-pr9848.sandbox.opencraft.com'
     self.assertTrue(
         github.is_pr_body_requesting_ephemeral_databases(pr_body, domain))