Package com.google.template.soy.bidifunctions

Source Code of com.google.template.soy.bidifunctions.BidiGlobalDirFunctionTest

/*
* Copyright 2009 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.bidifunctions;

import com.google.common.collect.ImmutableList;
import com.google.template.soy.data.SoyData;
import com.google.template.soy.data.restricted.IntegerData;
import com.google.template.soy.exprtree.Operator;
import com.google.template.soy.javasrc.restricted.JavaExpr;
import com.google.template.soy.jssrc.restricted.JsExpr;
import com.google.template.soy.shared.restricted.SharedRestrictedTestUtils;

import junit.framework.TestCase;


/**
* Unit tests for BidiGlobalDirFunction.
*
* @author Aharon Lanin
* @author Kai Huang
*/
public class BidiGlobalDirFunctionTest extends TestCase {


  private static final BidiGlobalDirFunction BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_LTR =
      new BidiGlobalDirFunction(SharedRestrictedTestUtils.BIDI_GLOBAL_DIR_FOR_STATIC_LTR_PROVIDER);

  private static final BidiGlobalDirFunction BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_RTL =
      new BidiGlobalDirFunction(SharedRestrictedTestUtils.BIDI_GLOBAL_DIR_FOR_STATIC_RTL_PROVIDER);

  private static final BidiGlobalDirFunction BIDI_GLOBAL_DIR_FUNCTION_FOR_ISRTL_CODE_SNIPPET =
      new BidiGlobalDirFunction(
          SharedRestrictedTestUtils.BIDI_GLOBAL_DIR_FOR_ISRTL_CODE_SNIPPET_PROVIDER);


  public void testComputeForTofu() {

    assertEquals(IntegerData.ONE,
                 BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_LTR.computeForTofu(
                     ImmutableList.<SoyData>of()));
    assertEquals(IntegerData.MINUS_ONE,
                 BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_RTL.computeForTofu(
                     ImmutableList.<SoyData>of()));
  }


  public void testComputeForJsSrc() {

    assertEquals(new JsExpr("1", Integer.MAX_VALUE),
                 BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_LTR.computeForJsSrc(
                     ImmutableList.<JsExpr>of()));
    assertEquals(new JsExpr("-1", Integer.MAX_VALUE),
                 BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_RTL.computeForJsSrc(
                     ImmutableList.<JsExpr>of()));
    assertEquals(new JsExpr("IS_RTL?-1:1", Operator.CONDITIONAL.getPrecedence()),
                 BIDI_GLOBAL_DIR_FUNCTION_FOR_ISRTL_CODE_SNIPPET.computeForJsSrc(
                     ImmutableList.<JsExpr>of()));
  }


  public void testComputeForJavaSrc() {

    assertEquals(
        new JavaExpr(
            "com.google.template.soy.data.restricted.IntegerData.forValue(1)",
            IntegerData.class, Integer.MAX_VALUE),
        BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_LTR.computeForJavaSrc(ImmutableList.<JavaExpr>of()));
    assertEquals(
        new JavaExpr(
            "com.google.template.soy.data.restricted.IntegerData.forValue(-1)",
            IntegerData.class, Integer.MAX_VALUE),
        BIDI_GLOBAL_DIR_FUNCTION_FOR_STATIC_RTL.computeForJavaSrc(ImmutableList.<JavaExpr>of()));
    assertEquals(
        new JavaExpr(
            "com.google.template.soy.data.restricted.IntegerData.forValue(IS_RTL?-1:1)",
            IntegerData.class, Integer.MAX_VALUE),
        BIDI_GLOBAL_DIR_FUNCTION_FOR_ISRTL_CODE_SNIPPET.computeForJavaSrc(
            ImmutableList.<JavaExpr>of()));
  }

}
TOP

Related Classes of com.google.template.soy.bidifunctions.BidiGlobalDirFunctionTest

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.