Skip to content

Codility/cui

Folders and files

NameName
Last commit message
Last commit date

Latest commit

48c6ee9 · Oct 14, 2015
Oct 9, 2015
Oct 14, 2015
Aug 6, 2014
Jul 18, 2014
Jul 21, 2014
Jul 17, 2014
Jul 17, 2014
Jun 24, 2014
Jun 24, 2014
Apr 26, 2015
Jun 23, 2014
Oct 7, 2014
Sep 1, 2015
Aug 26, 2015
Sep 4, 2015
Apr 9, 2015
Feb 13, 2015

Repository files navigation

CUI (Candidate User Interface)

Build Status

This is Codility's candidate interface. It's provided as a Django application ready for stand-alone development.

Installation

Install Python packages (from requirements.txt):

pip install -r requirements.txt

Install Ruby packages (from Gemfile):

gem install bundler
bundle install

For running the tests with Selenium, you need Xvfb and Firefox.

Under Ubuntu, you can install them using:

sudo apt-get install xvfb firefox

Running

You can run CUI using a standard Django development server:

python manage.py runserver localhost:8001

Run the unit tests (using Selenium):

python manage.py test

Run the unit tests (in your browser):

http://localhost:8001/test/

Run against a mock in-browser server:

http://localhost:8001/local/

To see browser while running selenium tests you have to set SHOW_SELENIUM environment variable.

If you would like to use driver other than Firefox for selenium tests you can use selenium remove web driver and specify remote address by REMOTE_SELENIUM environment variable. For example running tests using PhantomJS:

phantomjs --webdriver=22222 < /dev/null > /dev/null &
REMOTE_SELENIUM="http://localhost:22222" python manage.py test

Sometimes you might want to run only some tests not all. When you test under browser it's rather easy, just specify spec get attribute and it will work as filter for spec for example http://localhost:8001/test/?spec=plugins will run only tests containing "plugins" in their full name.

To achieve same behavior from terminal using selenium tests you can specify JASMINE_SPEC environment variable.

JASMINE_SPEC="plugins" python manage.py test

License

CUI is distributed under the terms of GNU Lesser General Public License version 3 (LGPLv3). See files COPYING and COPYING.LESSER for details.

Contact

By e-mail:

By phone:

+44-208-970-78-68
+1-415-466-8085

By postal mail:

Codility Polska
Dobra 56/66
00-312 Warszawa
Poland