/*
 * Copyright 2016 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 jsinterop.base;

import static jsinterop.base.FunctionAssert.assertFunctionMatches;

import com.google.gwt.junit.client.GWTTestCase;
import jsinterop.annotations.JsMethod;
import jsinterop.annotations.JsPackage;
import jsinterop.annotations.JsProperty;
import jsinterop.annotations.JsType;

/** Tests for verifying {@link Any} optimize out by compiler. */
public class AnyOptimizationTest extends GWTTestCase {

  @Override
  public String getModuleName() {
    return "jsinterop.base.TestModule";
  }

  @JsMethod @SuppressWarnings("unused")
  private void asPrimitive(String objectField) {
    double d = Js.asAny(objectField).asDouble();
    float f = Js.asAny(objectField).asFloat();
    long l = Js.asAny(objectField).asLong();
    int x = Js.asAny(objectField).asInt();
    short s = Js.asAny(objectField).asShort();
    char c = Js.asAny(objectField).asChar();
    byte b = Js.asAny(objectField).asByte();
    boolean bool = Js.asAny(objectField).asBoolean();
  }

  public void testAsPrimitive() {
    assertFunctionMatches(((MethodsAsProperties) this).getAsPrimitive(), "");
  }

  @JsMethod @SuppressWarnings("unused")
  private void uncheckedCast(Object objectField) {
    String s = Js.asAny(objectField).uncheckedCast();
  }

  public void testUncheckedCast() {
    assertFunctionMatches(((MethodsAsProperties) this).getUncheckedCast(), "");
  }

  @JsType(isNative = true, namespace = JsPackage.GLOBAL, name = "?")
  private interface MethodsAsProperties {
    @JsProperty
    Object getAsPrimitive();

    @JsProperty
    Object getUncheckedCast();
  }
}