blob: 194222915a095cdf3e0d0f9bf0ac5457ce03f769 [file] [log] [blame]
/*
* 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 org.fest.swing.core.Robot;
import org.fest.swing.edt.GuiTask;
import org.jetbrains.android.actions.CreateResourceFileDialog;
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<CreateResourceFileDialog> {
@NotNull
public static CreateResourceFileDialogFixture find(@NotNull Robot robot) {
return new CreateResourceFileDialogFixture(robot, find(robot, CreateResourceFileDialog.class));
}
private CreateResourceFileDialogFixture(@NotNull Robot robot, @NotNull DialogAndWrapper<CreateResourceFileDialog> 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 {
field.requestFocus();
}
});
robot().pressAndReleaseKey(KeyEvent.VK_BACK_SPACE); // to make sure we don't append to existing item on Linux
robot().enterText(newName);
return this;
}
}