Package com.google.template.soy.basicfunctions

Source Code of com.google.template.soy.basicfunctions.StrContainsFunctionTest

/*
* Copyright 2012 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.template.soy.basicfunctions;

import com.google.common.collect.ImmutableList;
import com.google.template.soy.data.SoyData;
import com.google.template.soy.data.restricted.BooleanData;
import com.google.template.soy.data.restricted.StringData;
import com.google.template.soy.exprtree.Operator;
import com.google.template.soy.javasrc.restricted.JavaExpr;
import com.google.template.soy.jssrc.restricted.JsExpr;

import junit.framework.TestCase;


/**
* Unit tests for {@link StrContainsFunction}.
*
* @author Felix Arends
*/
public class StrContainsFunctionTest extends TestCase {


  public void testComputeForTofu_containsString() {
    SoyData arg0 = StringData.forValue("foobarfoo");
    SoyData arg1 = StringData.forValue("bar");

    StrContainsFunction f = new StrContainsFunction();
    assertEquals(BooleanData.TRUE, f.computeForTofu(ImmutableList.of(arg0, arg1)));
  }


  public void testComputeForTofu_doesNotContainString() {
    SoyData arg0 = StringData.forValue("foobarfoo");
    SoyData arg1 = StringData.forValue("baz");

    StrContainsFunction f = new StrContainsFunction();
    assertEquals(BooleanData.FALSE, f.computeForTofu(ImmutableList.of(arg0, arg1)));
  }


  public void testComputeForJsSrc_lowPrecedenceArg() {

    StrContainsFunction f = new StrContainsFunction();
    JsExpr arg0 = new JsExpr("'foo' + 'bar'", Operator.PLUS.getPrecedence());
    JsExpr arg1 = new JsExpr("'bar'", Integer.MAX_VALUE);
    assertEquals(
        new JsExpr("('foo' + 'bar').indexOf('bar') != -1", Operator.NOT_EQUAL.getPrecedence()),
        f.computeForJsSrc(ImmutableList.of(arg0, arg1)));
  }


  public void testComputeForJsSrc_maxPrecedenceArgs() {

    StrContainsFunction f = new StrContainsFunction();
    JsExpr arg0 = new JsExpr("'foobar'", Integer.MAX_VALUE);
    JsExpr arg1 = new JsExpr("'bar'", Integer.MAX_VALUE);
    assertEquals(
        new JsExpr("'foobar'.indexOf('bar') != -1", Operator.NOT_EQUAL.getPrecedence()),
        f.computeForJsSrc(ImmutableList.of(arg0, arg1)));
  }


  public void testComputeForJavaSrc() {

    StrContainsFunction f = new StrContainsFunction();
    JavaExpr arg0 = new JavaExpr("A", StringData.class, Integer.MAX_VALUE);
    JavaExpr arg1 = new JavaExpr("B", StringData.class, Integer.MAX_VALUE);
    assertEquals(
        new JavaExpr(
            "com.google.template.soy.data.restricted.BooleanData.forValue((A).contains(B))",
            BooleanData.class, Integer.MAX_VALUE),
        f.computeForJavaSrc(ImmutableList.of(arg0, arg1)));
  }
}
TOP

Related Classes of com.google.template.soy.basicfunctions.StrContainsFunctionTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.