Package org.locationtech.udig.issues.test

Source Code of org.locationtech.udig.issues.test.FeatureIssueTest

/*
*    uDig - User Friendly Desktop Internet GIS client
*    http://udig.refractions.net
*    (C) 2012, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.issues.test;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.awt.Dimension;

import org.locationtech.udig.AbstractProjectUITestCase;
import org.locationtech.udig.catalog.CatalogPlugin;
import org.locationtech.udig.catalog.IGeoResource;
import org.locationtech.udig.catalog.tests.CatalogTests;
import org.locationtech.udig.core.enums.Priority;
import org.locationtech.udig.core.enums.Resolution;
import org.locationtech.udig.issues.FeatureIssue;
import org.locationtech.udig.issues.IIssue;
import org.locationtech.udig.issues.internal.view.IssueHandler;
import org.locationtech.udig.issues.listeners.IIssueListener;
import org.locationtech.udig.issues.listeners.IssueChangeType;
import org.locationtech.udig.issues.listeners.IssueEvent;
import org.locationtech.udig.issues.listeners.IssuePropertyChangeEvent;
import org.locationtech.udig.project.ILayer;
import org.locationtech.udig.project.IMap;
import org.locationtech.udig.project.command.AbstractCommand;
import org.locationtech.udig.project.command.MapCommand;
import org.locationtech.udig.project.command.UndoableCommand;
import org.locationtech.udig.project.internal.Layer;
import org.locationtech.udig.project.internal.Map;
import org.locationtech.udig.project.tests.support.MapTests;
import org.locationtech.udig.project.ui.ApplicationGIS;
import org.locationtech.udig.ui.WaitCondition;
import org.locationtech.udig.ui.tests.support.UDIGTestUtil;

import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.XMLMemento;
import org.geotools.data.FeatureSource;
import org.geotools.feature.FeatureCollection;
import org.geotools.geometry.jts.ReferencedEnvelope;
import org.geotools.referencing.CRS;
import org.geotools.referencing.crs.DefaultGeographicCRS;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.opengis.feature.simple.SimpleFeature;
import org.opengis.feature.simple.SimpleFeatureType;
import org.opengis.filter.Id;
import org.opengis.referencing.crs.CoordinateReferenceSystem;

import com.vividsolutions.jts.geom.Envelope;

public class FeatureIssueTest extends AbstractProjectUITestCase {

  public class BlankCommand extends AbstractCommand implements MapCommand, UndoableCommand {

        public void run( IProgressMonitor monitor ) throws Exception {
        }

        public String getName() {
            return null;
        }

        public void rollback( IProgressMonitor monitor ) throws Exception {
        }

    }

    private Map map;
  private IGeoResource resource;
  private SimpleFeature[] features;
 
  @Before
  public void setUp() throws Exception {
    features = UDIGTestUtil.createDefaultTestFeatures("test", 20); //$NON-NLS-1$
    resource = CatalogTests.createGeoResource(features, true);
    map=MapTests.createNonDynamicMapAndRenderer(resource, new Dimension(10,10));
  }

  @After
  public void tearDown() throws Exception {
    map.getProjectInternal().getElementsInternal().remove(map);
    CatalogPlugin.getDefault().getLocalCatalog().remove(resource.service(null));
  }

  /*
   * Test method for 'org.locationtech.udig.project.ui.FeatureIssue.fixIssue(IViewPart, IEditorPart)'
   */
  @Ignore
  @Test
  public void testFixIssue() throws Exception {
    final Layer layer= map.getLayersInternal().get(0);
    layer.setCRS(DefaultGeographicCRS.WGS84);
    CoordinateReferenceSystem crs = CRS.decode("EPSG:3005");//$NON-NLS-1$
    map.getViewportModelInternal().setCRS(crs);
    FeatureIssue issue=new FeatureIssue(Priority.LOW, "Description",layer, features[0], "test" ); //$NON-NLS-1$ //$NON-NLS-2$
   
    if( issue.getViewPartId()!=null  ){
      IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
      IViewPart view = activePage.findView(issue.getViewPartId());
      activePage.hideView(view);
    }
   
    assertFalse(ApplicationGIS.getActiveMap()==map);
   

        IssueHandler handler = IssueHandler.createHandler(issue);
       
        handler.fixIssue();
        map.sendCommandSync(new BlankCommand());
        UDIGTestUtil.inDisplayThreadWait(10000,new WaitCondition(){

      public boolean isTrue()  { 
                try{

                    ReferencedEnvelope env = new ReferencedEnvelope(features[0].getBounds());
                    Envelope transformed = (Envelope)env.transform(layer.getCRS(), true,5);
        return features[0].equals(map.getEditManager().getEditFeature()) &&
        map.getViewportModel().getBounds().contains(transformed);
                }catch (Exception e) {
                    throw (RuntimeException)new RuntimeException().initCause(e);
                }
      }
         
        }, true);
        assertTrue(layer.getFilter() instanceof Id);
        assertEquals(features[0].getID(), ((Id)layer.getFilter()).getIDs().toArray(new String[0])[0]);
        assertEquals(features[0], map.getEditManager().getEditFeature());
        assertEquals("active map should be the map of the issue", map, ApplicationGIS.getActiveMap()); //$NON-NLS-1$
        ReferencedEnvelope env = new ReferencedEnvelope(features[0].getBounds());
        assertTrue("Map must contain feature", map.getViewportModel().getBounds().contains((Envelope)env.transform(layer.getCRS(), true,5))); //$NON-NLS-1$
  }
   
    @Test
    public void testSetDescriptionEvents() throws Exception {
        FeatureIssue issue=IssuesListTestHelper.createFeatureIssue("Issue"); //$NON-NLS-1$
       
        Listener l=new Listener();
        issue.addIssueListener(l);
        Object oldValue=issue.getDescription();
        String newDescription="new Description";//$NON-NLS-1$
        issue.setDescription(newDescription);
        assertEquals(issue, l.source);
        assertEquals(newDescription, l.newValue);
        assertEquals(oldValue, l.oldValue);
        assertEquals(IssueChangeType.DESCRIPTION, l.change);
    }
   
    @Test
    public void testSetPriorityEvents() throws Exception {
        FeatureIssue issue=IssuesListTestHelper.createFeatureIssue("Issue"); //$NON-NLS-1$
       
        Listener l=new Listener();
        issue.addIssueListener(l);
        Object oldValue=issue.getPriority();
        Priority newPriority=Priority.TRIVIAL;
        issue.setPriority(newPriority);
        assertEquals(issue, l.source);
        assertEquals(newPriority, l.newValue);
        assertEquals(oldValue, l.oldValue);
        assertEquals(IssueChangeType.PRIORITY, l.change);
    }
   
    @Test
    public void testSetResolutionEvents() throws Exception {
        FeatureIssue issue=IssuesListTestHelper.createFeatureIssue("Issue"); //$NON-NLS-1$
       
        Listener l=new Listener();
        issue.addIssueListener(l);
        Object oldValue=issue.getResolution();
        Resolution newValue=Resolution.UNKNOWN;
        issue.setResolution(newValue);
        assertEquals(issue, l.source);
        assertEquals(newValue, l.newValue);
        assertEquals(oldValue, l.oldValue);
        assertEquals(IssueChangeType.RESOLUTION, l.change);
    }
   
    @Test
    public void testPersistence() throws Exception {
        IMap map=MapTests.createDefaultMap("name", 1, true, new Dimension(10,10)); //$NON-NLS-1$
        ILayer layer=map.getMapLayers().get(0);
        FeatureCollection<SimpleFeatureType, SimpleFeature> collection = layer.getResource(FeatureSource.class, null).getFeatures();
        SimpleFeature feature=collection.features().next();
       
        IIssue original=new FeatureIssue(Priority.WARNING, "test description", layer, feature, "groupID"); //$NON-NLS-1$ //$NON-NLS-2$
        XMLMemento memento=XMLMemento.createWriteRoot("memento"); //$NON-NLS-1$
        XMLMemento viewMemento=XMLMemento.createWriteRoot("viewMemento"); //$NON-NLS-1$
        original.save(memento);
        original.getViewMemento(viewMemento);
        FeatureIssue restored=new FeatureIssue();
        restored.init(memento, viewMemento, original.getId(), original.getGroupId(), original.getBounds());
        restored.setDescription(original.getDescription());
        restored.setPriority(original.getPriority());
        restored.setResolution(original.getResolution());
       
        assertEquals(original.getBounds(), restored.getBounds());
        assertEquals(original.getDescription(), restored.getDescription());
        assertEquals(original.getEditorID(), restored.getEditorID());
        assertEquals(original.getEditorInput(), restored.getEditorInput());
        assertEquals(original.getExtensionID(), restored.getExtensionID());
        assertEquals(original.getGroupId(), restored.getGroupId());
        assertEquals(original.getId(), restored.getId());
        assertEquals(original.getPerspectiveID(), restored.getPerspectiveID());
        assertEquals(original.getPriority(), restored.getPriority());
        assertEquals(original.getProblemObject(), restored.getProblemObject());
        for( int i = 0; i < original.getPropertyNames().length; i++ ) {
            assertEquals(original.getPropertyNames()[i], restored.getPropertyNames()[i]);
        }
        assertEquals(original.getResolution(), restored.getResolution());
        assertEquals(original.getViewPartId(), restored.getViewPartId());
    }

    class Listener implements IIssueListener{
        IIssue source;
        IssueChangeType change;
        Object newValue, oldValue;
        String propertyKey;
        public void notifyChanged( IssueEvent event){
            this.source=event.getSource();
            this.change=event.getChange();
            this.newValue=event.getNewValue();
            this.oldValue=event.getOldValue();
            this.propertyKey=null;
        }
        public void notifyPropertyChanged( IssuePropertyChangeEvent event){
            this.source=event.getSource();
            this.change=null;
            this.newValue=event.getNewValue();
            this.oldValue=event.getOldValue();
            this.propertyKey=event.getPropertyKey();
        }
    }
}
TOP

Related Classes of org.locationtech.udig.issues.test.FeatureIssueTest

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.