blob: 0d02a44300fb01a84eda297e87cf8c395f98f4bc [file] [log] [blame]
/*
* Copyright 2011 Google Inc.
*
* Licensed 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.
*/
package com.google.gwt.safecss.shared;
import com.google.gwt.core.client.GWT;
import com.google.gwt.junit.client.GWTTestCase;
/**
* GWT Unit tests for {@link SafeStylesBuilder}.
*/
public class GwtSafeStylesBuilderTest extends GWTTestCase {
private static final String CSS0 = "foo:bar;";
private static final String CSS1 = "baz:biz;";
private static final String INVALID_CSS = "baz:biz";
@Override
public String getModuleName() {
return "com.google.gwt.safecss.SafeCss";
}
public void testAppendSafeStyles() {
SafeStyles string0 = SafeStylesUtils.fromTrustedString(CSS0);
SafeStyles string1 = SafeStylesUtils.fromTrustedString(CSS1);
SafeStylesBuilder sb = new SafeStylesBuilder();
sb.append(string0);
sb.append(string1);
assertEquals("foo:bar;baz:biz;", sb.toSafeStyles().asString());
}
public void testAppendTrustedString() {
SafeStylesBuilder sb = new SafeStylesBuilder();
sb.appendTrustedString(CSS0);
sb.appendTrustedString(CSS1);
assertEquals("foo:bar;baz:biz;", sb.toSafeStyles().asString());
}
public void testAppendTrustedStringWithInvalidCss() {
if (GWT.isScript()) {
// Assertions are disabled in compiled scripts.
return;
}
SafeStylesBuilder sb = new SafeStylesBuilder();
sb.appendTrustedString(CSS0);
try {
sb.appendTrustedString(INVALID_CSS);
fail("Expected AssertionError");
} catch (AssertionError e) {
// Expected.
}
}
public void testEmpty() {
SafeStylesBuilder sb = new SafeStylesBuilder();
assertEquals("", sb.toSafeStyles().asString());
}
}