Commit b9d79aea by JonahStanley

A bunch of pylint fixes and explicit use case for uploads/test

parent 0524ff53
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
from lettuce import world, step from lettuce import world, step
from nose.tools import assert_true from nose.tools import assert_true
from nose.tools import assert_equal
from auth.authz import get_user_by_email from auth.authz import get_user_by_email
...@@ -13,12 +12,13 @@ import time ...@@ -13,12 +12,13 @@ import time
from logging import getLogger from logging import getLogger
logger = getLogger(__name__) logger = getLogger(__name__)
COURSE_NAME = 'Robot Super Course' _COURSE_NAME = 'Robot Super Course'
COURSE_NUM = '999' _COURSE_NUM = '999'
COURSE_ORG = 'MITx' _COURSE_ORG = 'MITx'
########### STEP HELPERS ############## ########### STEP HELPERS ##############
@step('I (?:visit|access|open) the Studio homepage$') @step('I (?:visit|access|open) the Studio homepage$')
def i_visit_the_studio_homepage(_step): def i_visit_the_studio_homepage(_step):
# To make this go to port 8001, put # To make this go to port 8001, put
...@@ -78,10 +78,11 @@ def create_studio_user( ...@@ -78,10 +78,11 @@ def create_studio_user(
registration.register(studio_user) registration.register(studio_user)
registration.activate() registration.activate()
def fill_in_course_info( def fill_in_course_info(
name=COURSE_NAME, name=_COURSE_NAME,
org=COURSE_ORG, org=_COURSE_ORG,
num=COURSE_NUM): num=_COURSE_NUM):
world.css_fill('.new-course-name', name) world.css_fill('.new-course-name', name)
world.css_fill('.new-course-org', org) world.css_fill('.new-course-org', org)
world.css_fill('.new-course-number', num) world.css_fill('.new-course-number', num)
...@@ -108,14 +109,14 @@ def log_into_studio( ...@@ -108,14 +109,14 @@ def log_into_studio(
def create_a_course(): def create_a_course():
c = world.CourseFactory.create(org=COURSE_ORG, course=COURSE_NUM, display_name=COURSE_NAME) world.CourseFactory.create(org=_COURSE_ORG, course=_COURSE_NUM, display_name=_COURSE_NAME)
# Add the user to the instructor group of the course # Add the user to the instructor group of the course
# so they will have the permissions to see it in studio # so they will have the permissions to see it in studio
g = world.GroupFactory.create(name='instructor_MITx/{course_num}/{course_name}'.format(course_num=COURSE_NUM, course_name=COURSE_NAME.replace(" ", "_"))) course = world.GroupFactory.create(name='instructor_MITx/{course_num}/{course_name}'.format(course_num=_COURSE_NUM, course_name=_COURSE_NAME.replace(" ", "_")))
u = get_user_by_email('robot+studio@edx.org') user = get_user_by_email('robot+studio@edx.org')
u.groups.add(g) user.groups.add(course)
u.save() user.save()
world.browser.reload() world.browser.reload()
course_link_css = 'span.class-name' course_link_css = 'span.class-name'
......
...@@ -9,19 +9,19 @@ EMAIL_EXTENSION = '@edx.org' ...@@ -9,19 +9,19 @@ EMAIL_EXTENSION = '@edx.org'
@step(u'I am viewing the course team settings') @step(u'I am viewing the course team settings')
def view_grading_settings(step): def view_grading_settings(_step):
world.click_course_settings() world.click_course_settings()
link_css = 'li.nav-course-settings-team a' link_css = 'li.nav-course-settings-team a'
world.css_click(link_css) world.css_click(link_css)
@step(u'The user "([^"]*)" exists$') @step(u'The user "([^"]*)" exists$')
def create_other_user(step, name): def create_other_user(_step, name):
create_studio_user(uname=name, password=PASSWORD, email=(name + EMAIL_EXTENSION)) create_studio_user(uname=name, password=PASSWORD, email=(name + EMAIL_EXTENSION))
@step(u'I add "([^"]*)" to the course team') @step(u'I add "([^"]*)" to the course team')
def add_other_user(step, name): def add_other_user(_step, name):
new_user_css = 'a.new-user-button' new_user_css = 'a.new-user-button'
world.css_click(new_user_css) world.css_click(new_user_css)
...@@ -34,18 +34,18 @@ def add_other_user(step, name): ...@@ -34,18 +34,18 @@ def add_other_user(step, name):
@step(u'I delete "([^"]*)" from the course team') @step(u'I delete "([^"]*)" from the course team')
def delete_other_user(step, name): def delete_other_user(_step, name):
to_delete_css = '.remove-user[data-id="{name}{extension}"]'.format(name=name, extension=EMAIL_EXTENSION) to_delete_css = '.remove-user[data-id="{name}{extension}"]'.format(name=name, extension=EMAIL_EXTENSION)
world.css_click(to_delete_css) world.css_click(to_delete_css)
@step(u'"([^"]*)" logs in$') @step(u'"([^"]*)" logs in$')
def other_user_login(step, name): def other_user_login(_step, name):
log_into_studio(uname=name, password=PASSWORD, email=name + EMAIL_EXTENSION) log_into_studio(uname=name, password=PASSWORD, email=name + EMAIL_EXTENSION)
@step(u'He does( not)? see the course on his page') @step(u'He does( not)? see the course on his page')
def see_course(step, doesnt_see_course): def see_course(_step, doesnt_see_course):
class_css = '.class-name' class_css = '.class-name'
all_courses = world.css_find(class_css) all_courses = world.css_find(class_css)
all_names = [item.html for item in all_courses] all_names = [item.html for item in all_courses]
...@@ -56,12 +56,12 @@ def see_course(step, doesnt_see_course): ...@@ -56,12 +56,12 @@ def see_course(step, doesnt_see_course):
@step(u'He cannot delete users') @step(u'He cannot delete users')
def cannot_delete(step): def cannot_delete(_step):
to_delete_css = '.remove-user' to_delete_css = '.remove-user'
assert world.is_css_not_present(to_delete_css) assert world.is_css_not_present(to_delete_css)
@step(u'He cannot add users') @step(u'He cannot add users')
def cannot_add(step): def cannot_add(_step):
add_css = '.new-user' add_css = '.new-user'
assert world.is_css_not_present(add_css) assert world.is_css_not_present(add_css)
...@@ -7,7 +7,7 @@ from common import type_in_codemirror ...@@ -7,7 +7,7 @@ from common import type_in_codemirror
@step(u'I go to the course updates page') @step(u'I go to the course updates page')
def go_to_uploads(step): def go_to_uploads(_step):
menu_css = 'li.nav-course-courseware' menu_css = 'li.nav-course-courseware'
uploads_css = '.nav-course-courseware-updates' uploads_css = '.nav-course-courseware-updates'
world.css_click(menu_css) world.css_click(menu_css)
...@@ -15,14 +15,14 @@ def go_to_uploads(step): ...@@ -15,14 +15,14 @@ def go_to_uploads(step):
@step(u'I add a new update with the text "([^"]*)"$') @step(u'I add a new update with the text "([^"]*)"$')
def add_update(step, text): def add_update(_step, text):
update_css = '.new-update-button' update_css = '.new-update-button'
world.css_click(update_css) world.css_click(update_css)
change_text(text) change_text(text)
@step(u'I should( not)? see the update "([^"]*)"$') @step(u'I should( not)? see the update "([^"]*)"$')
def check_update(step, doesnt_see_update, text): def check_update(_step, doesnt_see_update, text):
update_css = '.update-contents' update_css = '.update-contents'
update = world.css_find(update_css) update = world.css_find(update_css)
if doesnt_see_update: if doesnt_see_update:
...@@ -32,20 +32,20 @@ def check_update(step, doesnt_see_update, text): ...@@ -32,20 +32,20 @@ def check_update(step, doesnt_see_update, text):
@step(u'I modify the text to "([^"]*)"$') @step(u'I modify the text to "([^"]*)"$')
def modify_update(step, text): def modify_update(_step, text):
button_css = '.post-preview .edit-button' button_css = '.post-preview .edit-button'
world.css_click(button_css) world.css_click(button_css)
change_text(text) change_text(text)
@step(u'I delete the update$') @step(u'I delete the update$')
def click_button(step): def click_button(_step):
button_css = '.post-preview .delete-button' button_css = '.post-preview .delete-button'
world.css_click(button_css) world.css_click(button_css)
@step(u'I edit the date to "([^"]*)"$') @step(u'I edit the date to "([^"]*)"$')
def change_date(step, new_date): def change_date(_step, new_date):
button_css = '.post-preview .edit-button' button_css = '.post-preview .edit-button'
world.css_click(button_css) world.css_click(button_css)
date_css = 'input.date' date_css = 'input.date'
...@@ -58,21 +58,21 @@ def change_date(step, new_date): ...@@ -58,21 +58,21 @@ def change_date(step, new_date):
@step(u'I should see the date "([^"]*)"$') @step(u'I should see the date "([^"]*)"$')
def check_date(step, date): def check_date(_step, date):
date_css = '.date-display' date_css = '.date-display'
date_html = world.css_find(date_css) date_html = world.css_find(date_css)
assert date == date_html.html assert date == date_html.html
@step(u'I modify the handout to "([^"]*)"$') @step(u'I modify the handout to "([^"]*)"$')
def edit_handouts(step, text): def edit_handouts(_step, text):
edit_css = '.course-handouts > .edit-button' edit_css = '.course-handouts > .edit-button'
world.css_click(edit_css) world.css_click(edit_css)
change_text(text) change_text(text)
@step(u'I see the handout "([^"]*)"$') @step(u'I see the handout "([^"]*)"$')
def check_handout(step, handout): def check_handout(_step, handout):
handout_css = '.handouts-content' handout_css = '.handouts-content'
handouts = world.css_find(handout_css) handouts = world.css_find(handout_css)
assert handout in handouts.html assert handout in handouts.html
......
...@@ -6,7 +6,7 @@ from selenium.webdriver.common.keys import Keys ...@@ -6,7 +6,7 @@ from selenium.webdriver.common.keys import Keys
@step(u'I go to the static pages page') @step(u'I go to the static pages page')
def go_to_uploads(step): def go_to_uploads(_step):
menu_css = 'li.nav-course-courseware' menu_css = 'li.nav-course-courseware'
uploads_css = '.nav-course-courseware-pages' uploads_css = '.nav-course-courseware-pages'
world.css_find(menu_css).click() world.css_find(menu_css).click()
...@@ -14,13 +14,13 @@ def go_to_uploads(step): ...@@ -14,13 +14,13 @@ def go_to_uploads(step):
@step(u'I add a new page') @step(u'I add a new page')
def add_page(step): def add_page(_step):
button_css = '.new-button' button_css = '.new-button'
world.css_find(button_css).click() world.css_find(button_css).click()
@step(u'I should( not)? see a "([^"]*)" static page$') @step(u'I should( not)? see a "([^"]*)" static page$')
def see_page(step, doesnt, page): def see_page(_step, doesnt, page):
index = get_index(page) index = get_index(page)
if doesnt: if doesnt:
assert index == -1 assert index == -1
...@@ -29,7 +29,7 @@ def see_page(step, doesnt, page): ...@@ -29,7 +29,7 @@ def see_page(step, doesnt, page):
@step(u'I "([^"]*)" the "([^"]*)" page$') @step(u'I "([^"]*)" the "([^"]*)" page$')
def click_edit_delete(step, edit_delete, page): def click_edit_delete(_step, edit_delete, page):
button_css = '.%s-button' % edit_delete button_css = '.%s-button' % edit_delete
index = get_index(page) index = get_index(page)
assert index != -1 assert index != -1
...@@ -37,7 +37,7 @@ def click_edit_delete(step, edit_delete, page): ...@@ -37,7 +37,7 @@ def click_edit_delete(step, edit_delete, page):
@step(u'I change the name to "([^"]*)"$') @step(u'I change the name to "([^"]*)"$')
def change_name(step, new_name): def change_name(_step, new_name):
settings_css = '#settings-mode' settings_css = '#settings-mode'
world.css_find(settings_css).click() world.css_find(settings_css).click()
input_css = '.setting-input' input_css = '.setting-input'
......
...@@ -13,7 +13,7 @@ HTTP_PREFIX = "http://localhost:8001" ...@@ -13,7 +13,7 @@ HTTP_PREFIX = "http://localhost:8001"
@step(u'I go to the files and uploads page') @step(u'I go to the files and uploads page')
def go_to_uploads(step): def go_to_uploads(_step):
menu_css = 'li.nav-course-courseware' menu_css = 'li.nav-course-courseware'
uploads_css = '.nav-course-courseware-uploads' uploads_css = '.nav-course-courseware-uploads'
world.css_find(menu_css).click() world.css_find(menu_css).click()
...@@ -21,7 +21,7 @@ def go_to_uploads(step): ...@@ -21,7 +21,7 @@ def go_to_uploads(step):
@step(u'I upload the file "([^"]*)"$') @step(u'I upload the file "([^"]*)"$')
def upload_file(step, file_name): def upload_file(_step, file_name):
upload_css = '.upload-button' upload_css = '.upload-button'
world.css_find(upload_css).click() world.css_find(upload_css).click()
...@@ -36,7 +36,7 @@ def upload_file(step, file_name): ...@@ -36,7 +36,7 @@ def upload_file(step, file_name):
@step(u'I should( not)? see the file "([^"]*)" was uploaded$') @step(u'I should( not)? see the file "([^"]*)" was uploaded$')
def check_upload(step, do_not_see_file, file_name): def check_upload(_step, do_not_see_file, file_name):
index = get_index(file_name) index = get_index(file_name)
if do_not_see_file: if do_not_see_file:
assert index == -1 assert index == -1
...@@ -45,13 +45,13 @@ def check_upload(step, do_not_see_file, file_name): ...@@ -45,13 +45,13 @@ def check_upload(step, do_not_see_file, file_name):
@step(u'The url for the file "([^"]*)" is valid$') @step(u'The url for the file "([^"]*)" is valid$')
def check_url(step, file_name): def check_url(_step, file_name):
r = get_file(file_name) r = get_file(file_name)
assert r.status_code == 200 assert r.status_code == 200
@step(u'I delete the file "([^"]*)"$') @step(u'I delete the file "([^"]*)"$')
def delete_file(step, file_name): def delete_file(_step, file_name):
index = get_index(file_name) index = get_index(file_name)
assert index != -1 assert index != -1
delete_css = ".remove-asset-button" delete_css = ".remove-asset-button"
...@@ -62,7 +62,7 @@ def delete_file(step, file_name): ...@@ -62,7 +62,7 @@ def delete_file(step, file_name):
@step(u'I should see only one "([^"]*)"$') @step(u'I should see only one "([^"]*)"$')
def no_duplicate(step, file_name): def no_duplicate(_step, file_name):
names_css = '.name-col > a.filename' names_css = '.name-col > a.filename'
all_names = world.css_find(names_css) all_names = world.css_find(names_css)
only_one = False only_one = False
...@@ -73,7 +73,7 @@ def no_duplicate(step, file_name): ...@@ -73,7 +73,7 @@ def no_duplicate(step, file_name):
@step(u'I can download the correct "([^"]*)" file$') @step(u'I can download the correct "([^"]*)" file$')
def check_download(step, file_name): def check_download(_step, file_name):
path = os.path.join(TEST_ROOT, 'uploads/', file_name) path = os.path.join(TEST_ROOT, 'uploads/', file_name)
with open(os.path.abspath(path), 'r') as cur_file: with open(os.path.abspath(path), 'r') as cur_file:
cur_text = cur_file.read() cur_text = cur_file.read()
...@@ -83,7 +83,7 @@ def check_download(step, file_name): ...@@ -83,7 +83,7 @@ def check_download(step, file_name):
@step(u'I modify "([^"]*)"$') @step(u'I modify "([^"]*)"$')
def modify_upload(step, file_name): def modify_upload(_step, file_name):
new_text = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(10)) new_text = ''.join(random.choice(string.ascii_uppercase + string.digits) for x in range(10))
path = os.path.join(TEST_ROOT, 'uploads/', file_name) path = os.path.join(TEST_ROOT, 'uploads/', file_name)
with open(os.path.abspath(path), 'w') as cur_file: with open(os.path.abspath(path), 'w') as cur_file:
......
R22VMJ2M This is an arbitrary file for testing uploads
\ No newline at end of file
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