com.android.tools.idea.tests.gui.framework.fixture.CreateResourceFileDialogFixture.java Source code

Java tutorial

Introduction

Here is the source code for com.android.tools.idea.tests.gui.framework.fixture.CreateResourceFileDialogFixture.java

Source

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * 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.android.tools.idea.tests.gui.framework.fixture;

import com.intellij.openapi.wm.IdeFocusManager;
import org.fest.swing.core.Robot;
import org.fest.swing.edt.GuiTask;
import org.jetbrains.android.actions.CreateResourceFileDialogBase;
import org.jetbrains.annotations.NotNull;

import java.awt.*;
import java.awt.event.KeyEvent;

import static org.fest.swing.edt.GuiActionRunner.execute;
import static org.junit.Assert.assertEquals;

public class CreateResourceFileDialogFixture extends IdeaDialogFixture<CreateResourceFileDialogBase> {
    private CreateResourceFileDialogFixture(@NotNull Robot robot,
            @NotNull DialogAndWrapper<CreateResourceFileDialogBase> dialogAndWrapper) {
        super(robot, dialogAndWrapper);
    }

    public CreateResourceFileDialogFixture requireName(@NotNull String name) {
        assertEquals(name, getDialogWrapper().getFileName());
        return this;
    }

    @NotNull
    public CreateResourceFileDialogFixture setFileName(@NotNull final String newName) {
        final Component field = robot().finder().findByLabel(getDialogWrapper().getContentPane(), "File name:");
        execute(new GuiTask() {
            @Override
            protected void executeInEDT() throws Throwable {
                IdeFocusManager.getGlobalInstance().doWhenFocusSettlesDown(() -> {
                    IdeFocusManager.getGlobalInstance().requestFocus(field, true);
                });
            }
        });
        robot().pressAndReleaseKey(KeyEvent.VK_BACK_SPACE); // to make sure we don't append to existing item on Linux
        robot().enterText(newName);
        return this;
    }

    @NotNull
    public static CreateResourceFileDialogFixture find(@NotNull Robot robot) {
        return new CreateResourceFileDialogFixture(robot, find(robot, CreateResourceFileDialogBase.class));
    }
}