Exemplo n.º 1
0
 def test_makestudent_call(self):
     u = user.create_user(user.admin_dict)
     sys.argv = ['opensubmit-web', 'makestudent', u.email]
     cmdline.console_script(fsroot=self.tmpdir)
     u.refresh_from_db()
     self.assertEqual(False, u.is_superuser)
     self.assertEqual(False, u.is_staff)
Exemplo n.º 2
0
    def testConfigureCall(self):
        '''
            Simulate real command-line calls of the 'configure' functionality.

            This needs some explanation:
            - The 'configure' functionality does not care about Django settings, so we use
              the 'fsroot' parameter to force them into the temporary directory.
            - This should lead to the creation of a fresh settings file, which then must be
              adjusted by the user. We mock that accordingly.
            - The second run of 'configure' now finds the adjusted settings file. It parses
              the content and performs some validation and generation steps.
            - The last step of 'configure' is to call some Django manage.py functionality for
              the collection of static files. Since Django settings are already loaded by the test suite,
              the modified INI file is not respected here. For this reason, we need the settings decorator
              override.
        '''
        cmdline.console_script(fsroot=self.tmpdir)
        conf_name = self.tmpdir+'etc/opensubmit/settings.ini'
        self.assertEquals(True, os.path.isfile(conf_name))
        # Got a working settings file from the template, now configure it
        cfg=ConfigParser.ConfigParser()
        with open(conf_name) as cfg_file:
            cfg.readfp(cfg_file)
        cfg.set('server',  'HOST','http://www.troeger.eu')
        cfg.set('server',  'MEDIA_ROOT',self.tmpdir+settings.MEDIA_ROOT)
        cfg.set('server',  'LOG_FILE',self.tmpdir+settings.LOG_FILE)
        cfg.set('database','DATABASE_NAME',self.tmpdir+'database.sqlite')
        with open(conf_name,'w') as cfg_file:
            cfg.write(cfg_file)
        # We got an adjusted INI file, which is not-reconsidered by the indirectly triggered Django code,
        # but only by the 'configure' code itself.
        with self.settings(STATIC_ROOT=self.tmpdir+'static'):
            cmdline.console_script(fsroot=self.tmpdir)
            self.assertEquals(True, os.path.isfile(self.tmpdir+'etc/opensubmit/apache24.conf'))
            self.assertEquals(True, os.path.isdir(self.tmpdir+'static/css'))
Exemplo n.º 3
0
 def setUp(self):
     # prepare temporary target directory for tests
     self.tmpdir = tempfile.mkdtemp() + os.sep
     '''
     Create config file.
     This needs some explanation:
     - The 'configure' functionality does not care about Django settings,
       so we use the 'fsroot' parameter to force them into the
       temporary directory.
     - This should lead to the creation of a fresh settings file,
       which then must be adjusted by the user. We mock that accordingly.
     '''
     sys.argv = ['opensubmit-web', 'configure']
     cmdline.console_script(fsroot=self.tmpdir)
     conf_name = self.tmpdir + 'etc/opensubmit/settings.ini'
     self.assertEqual(True, os.path.isfile(conf_name))
     # Got a working settings file from the template, now configure it
     self.cfg = configparser.ConfigParser()
     with open(conf_name) as cfg_file:
         self.cfg.readfp(cfg_file)
     self.cfg.set('server', 'HOST', 'http://www.troeger.eu')
     self.cfg.set('server', 'MEDIA_ROOT', self.tmpdir + settings.MEDIA_ROOT)
     self.cfg.set('server', 'LOG_FILE', self.tmpdir + settings.LOG_FILE)
     self.cfg.set('database', 'DATABASE_NAME',
                  self.tmpdir + 'database.sqlite')
     with open(conf_name, 'w') as cfg_file:
         self.cfg.write(cfg_file)
Exemplo n.º 4
0
 def test_bool_configcreate_env(self):
     '''
     Test if boolean values from environment variables are
     correctly interpreted in the config file generation.
     '''
     sys.argv = ['opensubmit-web', 'configcreate']
     os.environ['OPENSUBMIT_DEBUG'] = 'True'
     cmdline.console_script(fsroot=self.tmpdir)
     data = open(self.conf_name, 'rt').readlines()
     self.assertTrue("DEBUG: True\n" in data)
     self.assertTrue("DEMO: False\n" in data)
     os.environ['OPENSUBMIT_LOGIN_DEMO'] = 'True'
     cmdline.console_script(fsroot=self.tmpdir)
     data = open(self.conf_name, 'rt').readlines()
     self.assertTrue("DEMO: True\n" in data)
Exemplo n.º 5
0
    def test_configtest_call(self):
        '''
        Simulate real command-line calls of the 'configure' functionality.

        Since the config file ist valid,  some Django manage.py
        functionality for the collection of static files is triggered here.
        Since Django settings are already loaded by the test suite,
        the modified INI file is not respected here.
        For this reason, we need the settings decorator override.
        '''
        # simulate command-line argument
        with self.settings(STATIC_ROOT=self.tmpdir + 'static'):
            sys.argv = ['opensubmit-web', 'configtest']
            cmdline.console_script(fsroot=self.tmpdir)
            self.assertEqual(True,
                             os.path.isdir(self.tmpdir + 'static/grappelli'))
Exemplo n.º 6
0
    def testConfigureCall(self):
        '''
            Simulate real command-line calls of the 'configure' functionality.

            This needs some explanation:
            - The 'configure' functionality does not care about Django settings, so we use
              the 'fsroot' parameter to force them into the temporary directory.
            - This should lead to the creation of a fresh settings file, which then must be
              adjusted by the user. We mock that accordingly.
            - The second run of 'configure' now finds the adjusted settings file. It parses
              the content and performs some validation and generation steps.
            - The last step of 'configure' is to call some Django manage.py functionality for
              the collection of static files. Since Django settings are already loaded by the test suite,
              the modified INI file is not respected here. For this reason, we need the settings decorator
              override.
        '''
        cmdline.console_script(fsroot=self.tmpdir)
        conf_name = self.tmpdir + 'etc/opensubmit/settings.ini'
        self.assertEquals(True, os.path.isfile(conf_name))
        # Got a working settings file from the template, now configure it
        cfg = ConfigParser.ConfigParser()
        with open(conf_name) as cfg_file:
            cfg.readfp(cfg_file)
        cfg.set('server', 'HOST', 'http://www.troeger.eu')
        cfg.set('server', 'MEDIA_ROOT', self.tmpdir + settings.MEDIA_ROOT)
        cfg.set('server', 'LOG_FILE', self.tmpdir + settings.LOG_FILE)
        cfg.set('database', 'DATABASE_NAME', self.tmpdir + 'database.sqlite')
        with open(conf_name, 'w') as cfg_file:
            cfg.write(cfg_file)
        # We got an adjusted INI file, which is not-reconsidered by the indirectly triggered Django code,
        # but only by the 'configure' code itself.
        with self.settings(STATIC_ROOT=self.tmpdir + 'static'):
            cmdline.console_script(fsroot=self.tmpdir)
            self.assertEquals(
                True,
                os.path.isfile(self.tmpdir + 'etc/opensubmit/apache24.conf'))
            self.assertEquals(True, os.path.isdir(self.tmpdir + 'static/css'))
Exemplo n.º 7
0
 def test_fixchecksums_call(self):
     sys.argv = ['opensubmit-web', 'fixchecksums']
     cmdline.console_script(fsroot=self.tmpdir)
Exemplo n.º 8
0
 def test_create_demo_call(self):
     sys.argv = ['opensubmit-web', 'createdemo']
     cmdline.console_script(fsroot=self.tmpdir)
     self.assertNotEqual(0, Course.objects.all().count())
Exemplo n.º 9
0
 def test_maketutor_call(self):
     u = user.create_user(user.get_student_dict(0))
     sys.argv = ['opensubmit-web', 'maketutor', u.email]
     cmdline.console_script(fsroot=self.tmpdir)
Exemplo n.º 10
0
 def test_makestudent_call(self):
     u = user.create_user(user.admin_dict)
     sys.argv = ['opensubmit-web', 'makestudent', u.email]
     cmdline.console_script(fsroot=self.tmpdir)