Commit 07d54be6 by cahrens

Add tests for toolbar buttons and converting links.

parent cc2fec2e
...@@ -328,10 +328,11 @@ def type_in_codemirror(index, text, find_prefix="$"): ...@@ -328,10 +328,11 @@ def type_in_codemirror(index, text, find_prefix="$"):
world.wait_for_ajax_complete() world.wait_for_ajax_complete()
def get_codemirror_value(index=0): def get_codemirror_value(index=0, find_prefix="$"):
return world.browser.driver.execute_script(""" return world.browser.driver.execute_script("""
return $('div.CodeMirror:eq({})').get(0).CodeMirror.getValue(); return {find_prefix}('div.CodeMirror:eq({index})').get(0).CodeMirror.getValue();
""".format(index)) """.format(index=index, find_prefix=find_prefix))
def upload_file(filename): def upload_file(filename):
path = os.path.join(TEST_ROOT, filename) path = os.path.join(TEST_ROOT, filename)
......
...@@ -38,4 +38,16 @@ Feature: CMS.HTML Editor ...@@ -38,4 +38,16 @@ Feature: CMS.HTML Editor
<style><!-- <style><!--
.title { color: red; } .title { color: red; }
--></style> --></style>
""" """
\ No newline at end of file
Scenario: TinyMCE toolbar buttons are as expected
Given I have created a Blank HTML Page
When I edit the page
Then the expected toolbar buttons are displayed
Scenario: Static links are converted when switching between code editor and WYSIWYG views
Given I have created a Blank HTML Page
When I edit the page
And type "<img src="/static/image.jpg">" in the code editor and press OK
Then the image static link is rewritten to translate the path
And the code editor displays "<p><img src="/static/image.jpg" alt="" /></p>"
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
from lettuce import world, step from lettuce import world, step
from nose.tools import assert_in, assert_equal # pylint: disable=no-name-in-module from nose.tools import assert_in, assert_equal # pylint: disable=no-name-in-module
from common import type_in_codemirror from common import type_in_codemirror, get_codemirror_value
@step('I have created a Blank HTML Page$') @step('I have created a Blank HTML Page$')
...@@ -53,6 +53,14 @@ def type_in_codemirror_plugin(step, text): ...@@ -53,6 +53,14 @@ def type_in_codemirror_plugin(step, text):
) )
@step('and the code editor displays "(.*)"$')
def verify_code_editor_text(step, text):
use_plugin(
'.mce-i-code',
lambda: assert_equal(text, get_codemirror_value(0, "$('iframe').contents().find"))
)
def use_plugin(button_class, action): def use_plugin(button_class, action):
# Click on plugin button # Click on plugin button
world.css_click(button_class) world.css_click(button_class)
...@@ -85,3 +93,39 @@ def image_static_link_is_rewritten(step): ...@@ -85,3 +93,39 @@ def image_static_link_is_rewritten(step):
# Test onExecCommandHandler set the url to absolute. # Test onExecCommandHandler set the url to absolute.
assert_in('c4x/MITx/999/asset/image.jpg', image['src']) assert_in('c4x/MITx/999/asset/image.jpg', image['src'])
@step('the expected toolbar buttons are displayed')
def check_toolbar_buttons(step):
dropdowns = world.css_find('.mce-listbox')
assert_equal(2, len(dropdowns))
# Format dropdown
assert_equal('Paragraph', dropdowns[0].text)
assert_equal('Font Family', dropdowns[1].text)
# Font dropdown
buttons = world.css_find('.mce-ico')
assert_equal(14, len(buttons))
def check_class(index, button_name):
class_names = buttons[index]._element.get_attribute('class')
assert_equal("mce-ico mce-i-" + button_name, class_names)
check_class(0, 'bold')
check_class(1, 'italic')
# This is our custom "code style" button. It uses an image instead of a class.
check_class(2, 'none')
check_class(3, 'underline')
check_class(4, 'forecolor')
check_class(5, 'bullist')
check_class(6, 'numlist')
check_class(7, 'outdent')
check_class(8, 'indent')
check_class(9, 'blockquote')
check_class(10, 'link')
check_class(11, 'unlink')
check_class(12, 'image')
check_class(13, 'code')
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