]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-4602 Revert eviction of dryRun cache on settings change
authorJulien HENRY <julien.henry@sonarsource.com>
Wed, 4 Sep 2013 07:26:36 +0000 (09:26 +0200)
committerJulien HENRY <julien.henry@sonarsource.com>
Wed, 4 Sep 2013 08:58:30 +0000 (10:58 +0200)
as it is not needed

14 files changed:
sonar-core/src/main/java/org/sonar/core/persistence/DryRunDatabaseFactory.java
sonar-core/src/test/java/org/sonar/core/persistence/DryRunDatabaseFactoryTest.java
sonar-plugin-api/src/main/java/org/sonar/api/config/GlobalPropertyChangeHandler.java
sonar-plugin-api/src/main/java/org/sonar/api/config/SettingsChangeHandler.java [deleted file]
sonar-server/src/main/java/org/sonar/server/configuration/Backup.java
sonar-server/src/main/java/org/sonar/server/configuration/PropertiesBackup.java
sonar-server/src/main/java/org/sonar/server/platform/DryRunCacheListener.java [deleted file]
sonar-server/src/main/java/org/sonar/server/platform/Platform.java
sonar-server/src/main/java/org/sonar/server/platform/SettingsChangeNotifier.java
sonar-server/src/main/java/org/sonar/server/ui/JRubyFacade.java
sonar-server/src/main/webapp/WEB-INF/app/models/property.rb
sonar-server/src/test/java/org/sonar/server/configuration/BackupTest.java
sonar-server/src/test/java/org/sonar/server/configuration/PropertiesBackupTest.java
sonar-server/src/test/java/org/sonar/server/platform/SettingsChangeNotifierTest.java

index 74a4946db9332daefa3148bad2548862f18f84d1..979d956f4824157a6a7b591c8c739763806a923e 100644 (file)
@@ -124,12 +124,11 @@ public class DryRunDatabaseFactory implements ServerComponent {
     long startup = System.currentTimeMillis();
 
     Long lastTimestampInCache = getLastTimestampInCache(projectId);
-    // TODO Temporary disable cache until cache eviction is ok
-    // if (lastTimestampInCache == null || !isValid(projectId, lastTimestampInCache)) {
-    lastTimestampInCache = System.nanoTime();
-    cleanCache(projectId);
-    createNewDatabaseForDryRun(projectId, startup, lastTimestampInCache);
-    // }
+    if (lastTimestampInCache == null || !isValid(projectId, lastTimestampInCache)) {
+      lastTimestampInCache = System.nanoTime();
+      cleanCache(projectId);
+      createNewDatabaseForDryRun(projectId, startup, lastTimestampInCache);
+    }
     return dbFileContent(projectId, lastTimestampInCache);
   }
 
index 5d26e439e8622d11f0c681e0a3224f611e3f5a62..bb5c335a4ca8b5cff02a23e8e047939b5cb3d8e1 100644 (file)
@@ -25,7 +25,6 @@ import org.apache.commons.dbcp.BasicDataSource;
 import org.apache.commons.io.FileUtils;
 import org.junit.After;
 import org.junit.Before;
-import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TemporaryFolder;
@@ -87,7 +86,6 @@ public class DryRunDatabaseFactoryTest extends AbstractDaoTestCase {
   }
 
   @Test
-  @Ignore
   public void should_reuse_database_without_project() throws IOException, SQLException {
     setupData("should_create_database");
 
@@ -138,7 +136,6 @@ public class DryRunDatabaseFactoryTest extends AbstractDaoTestCase {
   }
 
   @Test
-  @Ignore
   public void should_reuse_database_with_project() throws IOException, SQLException {
     setupData("should_create_database");
 
index 07e8def006d371a158e4dfa084fa4edd73e976c4..45f549e1086bde121d6cda2f7986f2206594faac 100644 (file)
@@ -19,6 +19,8 @@
  */
 package org.sonar.api.config;
 
+import org.sonar.api.ServerExtension;
+
 import javax.annotation.Nullable;
 
 /**
@@ -31,7 +33,7 @@ import javax.annotation.Nullable;
  *
  * @since 3.0
  */
-public abstract class GlobalPropertyChangeHandler implements SettingsChangeHandler {
+public abstract class GlobalPropertyChangeHandler implements ServerExtension {
 
   public static final class PropertyChange {
     private String key;
@@ -65,10 +67,4 @@ public abstract class GlobalPropertyChangeHandler implements SettingsChangeHandl
    */
   public abstract void onChange(PropertyChange change);
 
-  @Override
-  public void onChange(SettingsChange change) {
-    if (change.isGlobal()) {
-      onChange(PropertyChange.create(change.key(), change.newValue()));
-    }
-  }
 }
diff --git a/sonar-plugin-api/src/main/java/org/sonar/api/config/SettingsChangeHandler.java b/sonar-plugin-api/src/main/java/org/sonar/api/config/SettingsChangeHandler.java
deleted file mode 100644 (file)
index 09b8000..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2013 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * SonarQube 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.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-package org.sonar.api.config;
-
-import org.sonar.api.ServerExtension;
-
-import javax.annotation.Nullable;
-
-/**
- * Observe changes of properties done from web application. It does not support :
- * <ul>
- * <li>changes done programmatically on the component org.sonar.api.config.Settings</li>
- * <li>changes done when restoring settings from XML using backup/restore feature</li>
- * </ul>
- *
- * @since 4.0
- */
-public interface SettingsChangeHandler extends ServerExtension {
-
-  public static final class SettingsChange {
-    private String key;
-    private String newValue;
-    private String componentKey;
-    private String userLogin;
-
-    private SettingsChange(String key, @Nullable String newValue, @Nullable String componentKey, @Nullable String userLogin) {
-      this.key = key;
-      this.newValue = newValue;
-      this.componentKey = componentKey;
-      this.userLogin = userLogin;
-    }
-
-    public static SettingsChange create(String key, @Nullable String newValue, @Nullable String componentKey, @Nullable String userLogin) {
-      return new SettingsChange(key, newValue, componentKey, userLogin);
-    }
-
-    public String key() {
-      return key;
-    }
-
-    public String newValue() {
-      return newValue;
-    }
-
-    public String componentKey() {
-      return componentKey;
-    }
-
-    public String userLogin() {
-      return userLogin;
-    }
-
-    public boolean isGlobal() {
-      return componentKey == null && userLogin == null;
-    }
-
-    @Override
-    public String toString() {
-      return String.format("[key=%s, newValue=%s, componentKey=%s]", key, newValue, componentKey);
-    }
-  }
-
-  /**
-   * This method gets called when a property is changed.
-   */
-  public void onChange(SettingsChange change);
-
-}
index f4ecce316f19c27de6e115ad4218f1bdc6f6eecb..8f52f8d9955942e3a8f7f4f922aa4e4a2011f40b 100644 (file)
@@ -60,7 +60,7 @@ public class Backup {
     this.session = session;
 
     backupables.add(new MetricsBackup(session));
-    backupables.add(new PropertiesBackup(persistentSettings, cleanDryRunCache));
+    backupables.add(new PropertiesBackup(persistentSettings));
     // Note that order is important, because profile can have reference to rule
     backupables.add(new RulesBackup(session));
     backupables.add(new ProfilesBackup(session));
index 33404e2e189d93be428c58d7de087df4fea5f74c..8dac49cfe9bc6307130fcc65ee4a5691b81b147c 100644 (file)
@@ -28,7 +28,6 @@ import org.sonar.api.database.configuration.Property;
 import org.sonar.core.persistence.DryRunDatabaseFactory;
 import org.sonar.core.properties.PropertyDto;
 import org.sonar.server.platform.PersistentSettings;
-import org.sonar.server.startup.CleanDryRunCache;
 
 import java.util.List;
 import java.util.Map;
@@ -39,11 +38,8 @@ public class PropertiesBackup implements Backupable {
 
   private final PersistentSettings persistentSettings;
 
-  private final CleanDryRunCache cleanDryRunCache;
-
-  public PropertiesBackup(PersistentSettings persistentSettings, CleanDryRunCache cleanDryRunCache) {
+  public PropertiesBackup(PersistentSettings persistentSettings) {
     this.persistentSettings = persistentSettings;
-    this.cleanDryRunCache = cleanDryRunCache;
   }
 
   public void exportXml(SonarConfig sonarConfig) {
@@ -76,7 +72,6 @@ public class PropertiesBackup implements Backupable {
 
     persistentSettings.deleteProperties();
     persistentSettings.saveProperties(properties);
-    cleanDryRunCache.clean();
   }
 
   public void configure(XStream xStream) {
diff --git a/sonar-server/src/main/java/org/sonar/server/platform/DryRunCacheListener.java b/sonar-server/src/main/java/org/sonar/server/platform/DryRunCacheListener.java
deleted file mode 100644 (file)
index e08df85..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2013 SonarSource
- * mailto:contact AT sonarsource DOT com
- *
- * SonarQube is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 3 of the License, or (at your option) any later version.
- *
- * SonarQube 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.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program; if not, write to the Free Software Foundation,
- * Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
- */
-package org.sonar.server.platform;
-
-import org.sonar.api.config.SettingsChangeHandler;
-import org.sonar.core.resource.ResourceDao;
-
-public class DryRunCacheListener implements SettingsChangeHandler {
-
-  private final PersistentSettings settings;
-  private final ResourceDao resourceDao;
-
-  public DryRunCacheListener(PersistentSettings settings, ResourceDao resourceDao) {
-    this.settings = settings;
-    this.resourceDao = resourceDao;
-  }
-
-  @Override
-  public void onChange(SettingsChange change) {
-    // TODO Temporary disable cache eviction
-    // if (change.isGlobal()) {
-    // settings.saveProperty(DryRunDatabaseFactory.SONAR_DRY_RUN_CACHE_LAST_UPDATE_KEY, String.valueOf(System.nanoTime()));
-    // } else if (change.componentKey() != null) {
-    // ResourceDto rootProject = resourceDao.getRootProjectByComponentKey(change.componentKey());
-    // settings.saveProperty(DryRunDatabaseFactory.getCacheLastUpdateKey(rootProject.getId()), String.valueOf(System.nanoTime()));
-    // }
-  }
-}
index 5e10b6cd0c320c29854bb7d9df432b436493331f..65acf75027fee0656298ccc3cd856ee177acf785 100644 (file)
@@ -258,7 +258,6 @@ public final class Platform {
     coreContainer.addSingleton(ThreadLocalDatabaseSessionFactory.class);
     coreContainer.addPicoAdapter(new DatabaseSessionProvider());
     coreContainer.addSingleton(ServerMetadataPersister.class);
-    coreContainer.addSingleton(DryRunCacheListener.class);
     coreContainer.addSingleton(CleanDryRunCache.class);
     coreContainer.startComponents();
   }
index 931a446ac76c6e73a4a7b329f0d834816731b7f3..0c6ef3f2a1d63e5e9d47a29b08ff6e2b3bc56e82 100644 (file)
@@ -21,44 +21,26 @@ package org.sonar.server.platform;
 
 import com.google.common.annotations.VisibleForTesting;
 import org.sonar.api.ServerComponent;
-import org.sonar.api.config.SettingsChangeHandler;
-import org.sonar.core.resource.ResourceDao;
-import org.sonar.core.resource.ResourceDto;
-import org.sonar.core.user.UserDao;
-import org.sonar.core.user.UserDto;
+import org.sonar.api.config.GlobalPropertyChangeHandler;
 
 import javax.annotation.Nullable;
 
 public class SettingsChangeNotifier implements ServerComponent {
 
   @VisibleForTesting
-  SettingsChangeHandler[] changeHandlers;
-  private final ResourceDao resourceDao;
-  private final UserDao userDao;
+  GlobalPropertyChangeHandler[] changeHandlers;
 
-  public SettingsChangeNotifier(ResourceDao resourceDao, UserDao userDao, SettingsChangeHandler[] changeHandlers) {
-    this.resourceDao = resourceDao;
-    this.userDao = userDao;
+  public SettingsChangeNotifier(GlobalPropertyChangeHandler[] changeHandlers) {
     this.changeHandlers = changeHandlers;
   }
 
-  public SettingsChangeNotifier(ResourceDao resourceDao, UserDao userDao) {
-    this(resourceDao, userDao, new SettingsChangeHandler[0]);
+  public SettingsChangeNotifier() {
+    this(new GlobalPropertyChangeHandler[0]);
   }
 
-  public void onPropertyChange(String key, @Nullable String value, @Nullable Long componentId, @Nullable Long userId) {
-    String resourceKey = null;
-    if (componentId != null) {
-      ResourceDto resource = resourceDao.getResource(componentId);
-      resourceKey = resource != null ? resource.getKey() : null;
-    }
-    String userLogin = null;
-    if (userId != null) {
-      UserDto user = userDao.getUser(userId);
-      userLogin = user != null ? user.getLogin() : null;
-    }
-    SettingsChangeHandler.SettingsChange change = SettingsChangeHandler.SettingsChange.create(key, value, resourceKey, userLogin);
-    for (SettingsChangeHandler changeHandler : changeHandlers) {
+  public void onGlobalPropertyChange(String key, @Nullable String value) {
+    GlobalPropertyChangeHandler.PropertyChange change = GlobalPropertyChangeHandler.PropertyChange.create(key, value);
+    for (GlobalPropertyChangeHandler changeHandler : changeHandlers) {
       changeHandler.onChange(change);
     }
   }
index 169a25e6975637c36aa3949d32ea8124aa7b50ff..acf58e4832a13da083f92325688e541e28f5bab7 100644 (file)
@@ -342,11 +342,9 @@ public final class JRubyFacade {
     return get(ProfilesManager.class);
   }
 
-  public void updateProperty(String key, @Nullable String value, @Nullable Long componentId, @Nullable Long userId) {
-    if (componentId == null && userId == null) {
-      get(ServerSettings.class).setProperty(key, value);
-    }
-    get(SettingsChangeNotifier.class).onPropertyChange(key, value, componentId, userId);
+  public void setGlobalProperty(String key, @Nullable String value) {
+    get(ServerSettings.class).setProperty(key, value);
+    get(SettingsChangeNotifier.class).onGlobalPropertyChange(key, value);
   }
 
   public Settings getSettings() {
index b6faefc36f41d8137c0b1c0e169e2cbaeb5879e4..b76da8946cd47e70ef5b0212891d8d6b9137383c 100644 (file)
@@ -176,7 +176,7 @@ class Property < ActiveRecord::Base
   private
 
   def self.setGlobalProperty(key, value, resource_id, user_id)
-    Api::Utils.java_facade.updateProperty(key, value, resource_id && resource_id.to_i, user_id && user_id.to_i)
+    Api::Utils.java_facade.setGlobalProperty(key, value) unless (resource_id || user_id)
   end
 
   def self.all(key, resource_id=nil, user_id=nil)
index 6426692fc274c61ca81198383230d1363577a884..8380ab1e966d0812ad5cc1b5e144135e9adb39f3 100644 (file)
@@ -24,7 +24,6 @@ import org.apache.commons.io.IOUtils;
 import org.apache.commons.lang.CharEncoding;
 import org.custommonkey.xmlunit.Diff;
 import org.custommonkey.xmlunit.XMLUnit;
-import org.junit.Before;
 import org.junit.Test;
 import org.sonar.api.database.DatabaseSession;
 import org.sonar.api.database.configuration.Property;
@@ -36,7 +35,6 @@ import org.sonar.api.rules.ActiveRuleParam;
 import org.sonar.api.rules.Rule;
 import org.sonar.api.rules.RuleParam;
 import org.sonar.api.rules.RulePriority;
-import org.sonar.server.startup.CleanDryRunCache;
 
 import java.io.IOException;
 import java.io.InputStream;
@@ -56,13 +54,6 @@ import static org.mockito.Mockito.verify;
 
 public class BackupTest {
 
-  private CleanDryRunCache cleanDryRunCache;
-
-  @Before
-  public void prepare() {
-    this.cleanDryRunCache = mock(CleanDryRunCache.class);
-  }
-
   @Test
   public void shouldExportXml() throws Exception {
     SonarConfig sonarConfig = getSonarConfig();
@@ -76,7 +67,7 @@ public class BackupTest {
 
   @Test
   public void shouldReturnAValidXml() throws Exception {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache),
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null),
       new RulesBackup((DatabaseSession) null), new ProfilesBackup((DatabaseSession) null)));
     SonarConfig sonarConfig = getSonarConfig();
     sonarConfig.setMetrics(getMetrics());
@@ -92,7 +83,7 @@ public class BackupTest {
   public void shouldExportXmlInCdata() throws Exception {
     SonarConfig sonarConfig = getSonarConfig();
     sonarConfig.setProperties(getPropertiesWithXmlIlliciteCharacters());
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = backup.getXmlFromSonarConfig(sonarConfig);
     assertXmlAreSimilar(xml, "backup-with-cdata.xml");
@@ -102,7 +93,7 @@ public class BackupTest {
   public void shouldExportXmlWithUtf8Characters() throws Exception {
     SonarConfig sonarConfig = getSonarConfig();
     sonarConfig.setProperties(getPropertiesWithUtf8Characters());
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = backup.getXmlFromSonarConfig(sonarConfig);
     assertXmlAreSimilar(xml, "backup-with-utf8-char.xml");
@@ -110,7 +101,7 @@ public class BackupTest {
 
   @Test
   public void shouldImportXml() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache),
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null),
       new RulesBackup((DatabaseSession) null), new ProfilesBackup((DatabaseSession) null)));
 
     String xml = getFileFromClasspath("backup-restore-valid.xml");
@@ -193,7 +184,7 @@ public class BackupTest {
 
   @Test
   public void shouldImportXmlWithoutInheritanceInformation() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache),
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null),
       new RulesBackup((DatabaseSession) null), new ProfilesBackup((DatabaseSession) null)));
 
     String xml = getFileFromClasspath("backup-restore-without-inheritance.xml");
@@ -209,7 +200,7 @@ public class BackupTest {
 
   @Test
   public void shouldImportXmlWithXmlIlliciteCharacters() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = getFileFromClasspath("backup-with-cdata.xml");
     SonarConfig sonarConfig = backup.getSonarConfigFromXml(xml);
@@ -219,7 +210,7 @@ public class BackupTest {
 
   @Test
   public void shouldImportOneDotFiveFormat() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = getFileFromClasspath("shouldImportOneDotFiveFormat.xml");
     SonarConfig sonarConfig = backup.getSonarConfigFromXml(xml);
@@ -231,7 +222,7 @@ public class BackupTest {
 
   @Test
   public void shouldImportXmlWithUtf8Character() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = getFileFromClasspath("backup-with-utf8-char.xml");
     SonarConfig sonarConfig = backup.getSonarConfigFromXml(xml);
@@ -241,7 +232,7 @@ public class BackupTest {
 
   @Test
   public void shouldNotImportMetricIds() {
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
 
     String xml = getFileFromClasspath("backup-with-id-for-metrics.xml");
     SonarConfig sonarConfig = backup.getSonarConfigFromXml(xml);
@@ -255,7 +246,7 @@ public class BackupTest {
     SonarConfig sonarConfig = getSonarConfig();
     sonarConfig.setProperties(getPropertiesWithCDATA());
 
-    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null, cleanDryRunCache)));
+    Backup backup = new Backup(Arrays.asList(new MetricsBackup(null), new PropertiesBackup(null)));
     String xml = backup.getXmlFromSonarConfig(sonarConfig);
     assertXmlAreSimilar(xml, "backup-with-splitted-cdata.xml");
 
index 31a782ed4640c0586163317c293ad9b6cbb0cb2c..51173e6262f544845fe683606cd296b33ec8a414 100644 (file)
@@ -28,7 +28,6 @@ import org.sonar.api.CoreProperties;
 import org.sonar.api.database.configuration.Property;
 import org.sonar.core.properties.PropertyDto;
 import org.sonar.server.platform.PersistentSettings;
-import org.sonar.server.startup.CleanDryRunCache;
 
 import java.util.Arrays;
 import java.util.Collection;
@@ -49,7 +48,7 @@ public class PropertiesBackupTest {
   @Before
   public void setup() {
     persistentSettings = mock(PersistentSettings.class);
-    backup = new PropertiesBackup(persistentSettings, mock(CleanDryRunCache.class));
+    backup = new PropertiesBackup(persistentSettings);
   }
 
   @Test
index 2988c58462f31d537c009a194d9f65a2ccadd082..2b1bf1871eab137e56e3eadb9d6fb3b7d721f39c 100644 (file)
@@ -21,9 +21,7 @@ package org.sonar.server.platform;
 
 import org.junit.Test;
 import org.mockito.ArgumentMatcher;
-import org.sonar.api.config.SettingsChangeHandler;
-import org.sonar.core.resource.ResourceDao;
-import org.sonar.core.user.UserDao;
+import org.sonar.api.config.GlobalPropertyChangeHandler;
 
 import static org.fest.assertions.Assertions.assertThat;
 import static org.mockito.Matchers.argThat;
@@ -33,27 +31,27 @@ import static org.mockito.Mockito.verify;
 public class SettingsChangeNotifierTest {
   @Test
   public void onGlobalPropertyChange() {
-    SettingsChangeHandler handler = mock(SettingsChangeHandler.class);
-    SettingsChangeNotifier notifier = new SettingsChangeNotifier(mock(ResourceDao.class), mock(UserDao.class), new SettingsChangeHandler[] {handler});
+    GlobalPropertyChangeHandler handler = mock(GlobalPropertyChangeHandler.class);
+    SettingsChangeNotifier notifier = new SettingsChangeNotifier(new GlobalPropertyChangeHandler[] {handler});
 
-    notifier.onPropertyChange("foo", "bar", null, null);
+    notifier.onGlobalPropertyChange("foo", "bar");
 
-    verify(handler).onChange(argThat(new ArgumentMatcher<SettingsChangeHandler.SettingsChange>() {
+    verify(handler).onChange(argThat(new ArgumentMatcher<GlobalPropertyChangeHandler.PropertyChange>() {
       @Override
       public boolean matches(Object o) {
-        SettingsChangeHandler.SettingsChange change = (SettingsChangeHandler.SettingsChange) o;
-        return change.key().equals("foo") && change.newValue().equals("bar") && change.componentKey() == null && change.userLogin() == null;
+        GlobalPropertyChangeHandler.PropertyChange change = (GlobalPropertyChangeHandler.PropertyChange) o;
+        return change.getKey().equals("foo") && change.getNewValue().equals("bar");
       }
     }));
   }
 
   @Test
   public void no_handlers() {
-    SettingsChangeNotifier notifier = new SettingsChangeNotifier(mock(ResourceDao.class), mock(UserDao.class));
+    SettingsChangeNotifier notifier = new SettingsChangeNotifier();
 
     assertThat(notifier.changeHandlers).isEmpty();
 
     // does not fail
-    notifier.onPropertyChange("foo", "bar", null, null);
+    notifier.onGlobalPropertyChange("foo", "bar");
   }
 }