/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright (c) 2006 - 2015 Pentaho Corporation.. All rights reserved. */ package org.pentaho.reporting.ui.datasources.jdbc; import static org.mockito.Matchers.any; import static org.mockito.Mockito.doReturn; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.spy; import static org.mockito.Mockito.times; import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.awt.Window; import org.junit.AfterClass; import org.junit.BeforeClass; import org.junit.Test; import org.pentaho.reporting.engine.classic.core.DataFactory; import org.pentaho.reporting.engine.classic.core.designtime.DataFactoryChangeRecorder; import org.pentaho.reporting.engine.classic.core.designtime.DesignTimeContext; import org.pentaho.reporting.engine.classic.core.modules.misc.datafactory.sql.SimpleSQLReportDataFactory; import org.pentaho.reporting.ui.datasources.jdbc.ui.SimpleJdbcDataSourceDialog; public class SimpleJdbcDataSourcePluginTest { private static final String PROPERTY_NAME = "java.awt.headless"; private static String defaultValue; @BeforeClass public static void beforeClass() { defaultValue = System.getProperty( PROPERTY_NAME, Boolean.toString( true ) ); System.setProperty( PROPERTY_NAME, Boolean.toString( true ) ); } @AfterClass public static void afterClass() { System.setProperty( PROPERTY_NAME, defaultValue ); } @Test public void performEdit() { SimpleJdbcDataSourcePlugin simpleJdbcDataSourcePlugin = spy( new SimpleJdbcDataSourcePlugin() ); SimpleJdbcDataSourceDialog editor = mock( SimpleJdbcDataSourceDialog.class ); doReturn( editor ).when( simpleJdbcDataSourcePlugin ).createEditor( any( DesignTimeContext.class ) ); DesignTimeContext designTimeContext = mock( DesignTimeContext.class ); when( designTimeContext.getParentWindow() ).thenReturn( mock( Window.class ) ); DataFactory input = mock( SimpleSQLReportDataFactory.class ); DataFactoryChangeRecorder changeRecorder = mock( DataFactoryChangeRecorder.class ); simpleJdbcDataSourcePlugin.performEdit( designTimeContext, input, "TEST_QUERY_NAME", changeRecorder ); verify( editor, times( 1 ) ).performConfiguration( any( SimpleSQLReportDataFactory.class ) ); } }