| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| <Module> |
| <ModulePrefs title="EndToEndTest"> |
| <Locale messages="messages.xml"/> |
| <Locale lang="ar" messages="messages_ar.xml" language_direction="rtl"/> |
| <Require feature="views" /> |
| <Optional feature="content-rewrite"> |
| <Param name="exclude-urls">.*</Param> |
| </Optional> |
| </ModulePrefs> |
| <Content type="html"> |
| <![CDATA[ |
| <span id="substituteHere">__MSG_TEST__</span> |
| <span id="bidi">__BIDI_DIR__</span> |
| |
| <script type="text/javascript" src="/testframework.js"></script> |
| <script type="text/javascript"> |
| function expectsLtr() { |
| var prefs = new gadgets.Prefs(); |
| return 'ar' != prefs.getLang(); |
| } |
| |
| function getExpectedText() { |
| if (expectsLtr()) { |
| return 'test FTW'; |
| } else { |
| return 'WTF tset'; |
| } |
| } |
| |
| var tests = { |
| /** Test basic message insertion */ |
| substituteInContent: function() { |
| var span = document.getElementById('substituteHere'); |
| var expectedText = getExpectedText(); |
| assertEquals('Text not substituted', expectedText, span.firstChild.data); |
| finished(); |
| }, |
| |
| /** Test message availablity from Prefs */ |
| prefsGetMsg: function() { |
| var prefs = new gadgets.Prefs(); |
| var expectedText = getExpectedText(); |
| assertEquals('getMsg not successful', expectedText, prefs.getMsg('TEST')); |
| finished(); |
| }, |
| |
| /** Test BIDI replacement */ |
| substituteBidi: function() { |
| var span = document.getElementById('bidi'); |
| var expectedLtr = expectsLtr() ? 'ltr' : 'rtl'; |
| assertEquals('BIDI not substituted', expectedLtr, span.firstChild.data); |
| finished(); |
| } |
| } |
| </script> |
| ]]> |
| </Content> |
| </Module> |