/*-
 * #%L
 * XTerm Console Addon
 * %%
 * Copyright (C) 2020 - 2026 Flowing Code
 * %%
 * 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.
 * #L%
 */
package com.flowingcode.vaadin.addons.xterm.integration;

import static org.junit.Assert.assertEquals;
import com.flowingcode.vaadin.testbench.rpc.HasRpcSupport;
import org.junit.Test;

public class SampleClientTerminalAddonIT extends AbstractViewTest implements HasRpcSupport {

  private static final String BAR = "BAR";
  IntegrationViewCallables $server = createCallableProxy(IntegrationViewCallables.class);

  @Test
  public void testSelectionFeature1() throws InterruptedException {
    XTermElement term = $(XTermElement.class).first();
    $server.setSampleClientTerminalAddonValue(BAR);
    assertEquals(BAR, getSampleClientTerminalValue(term));
  }

  private static String getSampleClientTerminalValue(XTermElement term) {
    return (String) term.executeScript("return this.addons[arguments[0]].value;",
        SampleClientTerminalAddon.NAME);
  }

}