/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.editor.macro; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.runners.MockitoJUnitRunner; import static org.junit.Assert.assertSame; import static org.mockito.Matchers.eq; import static org.mockito.Mockito.verify; /** * Unit tests for the {@link EditorCurrentProjectNameMacro} * * @author Vlad Zhukovskyi */ @RunWith(MockitoJUnitRunner.class) public class EditorCurrentProjectNameMacroTest extends AbstractEditorMacroTest { private EditorCurrentProjectNameMacro provider; @Override protected AbstractEditorMacro getProvider() { return provider; } @Before public void init() throws Exception { provider = new EditorCurrentProjectNameMacro(editorAgent, promiseProvider, localizationConstants); } @Test public void testGetKey() throws Exception { assertSame(provider.getName(), EditorCurrentProjectNameMacro.KEY); } @Test public void getValue() throws Exception { initEditorWithTestFile(); provider.expand(); verify(editorAgent).getActiveEditor(); verify(promiseProvider).resolve(eq(PROJECT_NAME)); } @Test public void getEmptyValue() throws Exception { provider.expand(); verify(editorAgent).getActiveEditor(); verify(promiseProvider).resolve(eq("")); } }