Package com.eclipsesource.jshint.ui.internal.builder

Source Code of com.eclipsesource.jshint.ui.internal.builder.JSHintBuilderVisitor_Test

/*******************************************************************************
* Copyright (c) 2013 EclipseSource.
* 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:
*    Ralf Sternberg - initial implementation and API
******************************************************************************/
package com.eclipsesource.jshint.ui.internal.builder;

import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.osgi.service.prefs.BackingStoreException;
import org.osgi.service.prefs.Preferences;

import com.eclipsesource.jshint.ui.internal.preferences.EnablementPreferences;
import com.eclipsesource.jshint.ui.internal.preferences.PreferencesFactory;

import static com.eclipsesource.jshint.ui.test.TestUtil.*;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;


public class JSHintBuilderVisitor_Test {

  private IProject project;
  private IFile file;
  private IProgressMonitor monitor;

  @Before
  public void setUp() throws BackingStoreException {
    PreferencesFactory.getWorkspacePreferences().clear();
    project = createProject( "test" );
    file = createFile( project, "/test.js", "test content" );
    monitor = new NullProgressMonitor();
  }

  @After
  public void tearDown() {
    deleteProject( project );
  }

  @Test
  public void skipsProjectWithoutIncludePattern() throws CoreException {
    JSHintBuilderVisitor visitor = new JSHintBuilderVisitor( project, monitor );

    assertFalse( visitor.visit( project ) );
  }

  @Test
  public void visitsProjectWhenIncludePatternIsPresent() throws CoreException {
    addIncludePattern( project, "/test.js" );
    JSHintBuilderVisitor visitor = new JSHintBuilderVisitor( project, monitor );

    assertTrue( visitor.visit( project ) );
  }

  @Test
  public void skipsProjectWhenCancelled() throws CoreException {
    addIncludePattern( project, "/test.js" );
    JSHintBuilderVisitor visitor = new JSHintBuilderVisitor( project, monitor );

    monitor.setCanceled( true );

    assertFalse( visitor.visit( project ) );
  }

  @Test
  public void visitsResourceWhenIncluded() throws CoreException {
    addIncludePattern( project, "/test.js" );
    JSHintBuilderVisitor visitor = new JSHintBuilderVisitor( project, monitor );

    assertTrue( visitor.visit( file ) );
  }

  @Test
  public void skipsResourceWhenCancelled() throws CoreException {
    addIncludePattern( project, "/test.js" );
    JSHintBuilderVisitor visitor = new JSHintBuilderVisitor( project, monitor );

    monitor.setCanceled( true );

    assertFalse( visitor.visit( file ) );
  }

  private void addIncludePattern( IProject project, String... pattern ) {
    Preferences projectPrefsNode = PreferencesFactory.getProjectPreferences( project );
    new EnablementPreferences( projectPrefsNode ).setIncludePatterns( list( pattern ) );
  }

}
TOP

Related Classes of com.eclipsesource.jshint.ui.internal.builder.JSHintBuilderVisitor_Test

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.