This is an automated email from the ASF dual-hosted git repository. geertjan pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-netbeans.git.
from ff1e629 Merge pull request #302 from matthiasblaesing/licenses add 2fbe95f Revert "disabled failing tests" add f1c5504 reactivated AutoupdateInfoParserTest VerifyFileTest ExecutablePermissionsTest and testInstallRegularModule add 5799eb3 Revert "Removed failing test UpdateFromNbmTest" add df9e965 Revert "Tests related fixes" add b01387e Revert "Testcases related fixes" add a40e437 added missing test assets fixed tests add 72a9958 removed test asset, that was only needed to generate the UpdateCenterXML add fa0921e replayed license header changes of #282 on restored files add aba5ce3 fixed ExecutablePermissionsTest by providing a test asset with installer add 7ee397a fixed UpdateUnitFactoryTest by providing an update catalog add 2bcce3b using nbm.executable.files property to include and make files executable new 02a8fa6 Merge pull request #279 from steffendietz/restore-autoupdate-services-tests The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../netbeans/api/autoupdate/RefreshItemsTest.java | 12 +- .../UpdateProviderFactoryCreateTest.java | 8 +- .../api/autoupdate/UpdateProviderFactoryTest.java | 5 +- .../autoupdate/data/catalog.xml} | 18 +- .../data/com-example-testmodule-cluster.nbm | Bin 0 -> 3188 bytes .../api/autoupdate/data/dummy-signed-twice.jar | Bin 0 -> 4368 bytes .../netbeans/api/autoupdate/data/dummy-signed.jar | Bin 0 -> 2796 bytes .../src/org/netbeans/api/autoupdate/data/empty.jar | Bin 0 -> 343 bytes .../data/org-yourorghere-brokendepending.nbm | Bin 0 -> 3208 bytes .../autoupdate/data/org-yourorghere-depending.nbm | Bin 0 -> 3186 bytes ...org-yourorghere-depending_on_new_one_engine.nbm | Bin 0 -> 3271 bytes .../autoupdate/data/org-yourorghere-engine-1-1.nbm | Bin 0 -> 3142 bytes .../autoupdate/data/org-yourorghere-engine-1-2.nbm | Bin 0 -> 3127 bytes .../api/autoupdate/data/org-yourorghere-engine.nbm | Bin 0 -> 3136 bytes .../org-yourorghere-executable-permissions.nbm | Bin 0 -> 3661 bytes .../data/org-yourorghere-independent-1-1.nbm | Bin 0 -> 3132 bytes .../data/org-yourorghere-independent.nbm | Bin 0 -> 3128 bytes .../org-yourorghere-refresh_providers_test.nbm | Bin 0 -> 3198 bytes .../netbeans/api/autoupdate/data/test-keystore.jks | Bin 0 -> 4481 bytes .../api/autoupdate/data/updates-subset.xml | 49 +++--- .../org/netbeans/api/autoupdate/data/updates.xml | 60 ++++--- ...isabled.java => ExecutablePermissionsTest.java} | 15 +- .../services/InstallDisabledModuleTest.java | 12 +- .../services/InstallEagerModuleTest.java | 42 ++--- .../services/InstallHiddenModuleTest.java | 2 +- .../services/InstallIntoNewClusterTest.java | 2 +- .../services/NbmsInDownloadedTabTest.java | 2 +- ...estDisabled.java => NewClustersRebootTest.java} | 16 +- ...Disabled.java => UpdateDisabledModuleTest.java} | 66 ++++---- .../autoupdate/services/UpdateFromNbmTest.java | 143 ++++++++++++++++ .../autoupdate/services/UpdateUnitFactoryTest.java | 188 +++++++++++++++++++++ ...fyFileTestDisabled.java => VerifyFileTest.java} | 12 +- .../AutoupdateCatalogProviderTest.java | 2 +- ...Disabled.java => AutoupdateInfoParserTest.java} | 18 +- .../updateprovider/{ => data}/malformed.xml | 0 35 files changed, 501 insertions(+), 171 deletions(-) copy autoupdate.services/test/unit/src/org/netbeans/{modules/autoupdate/updateprovider/malformed.xml => api/autoupdate/data/catalog.xml} (51%) create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/com-example-testmodule-cluster.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/dummy-signed-twice.jar create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/dummy-signed.jar create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/empty.jar create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-brokendepending.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-depending.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-depending_on_new_one_engine.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-engine-1-1.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-engine-1-2.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-engine.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-executable-permissions.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-independent-1-1.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-independent.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/org-yourorghere-refresh_providers_test.nbm create mode 100644 autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/test-keystore.jks rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/{ExecutablePermissionsTestDisabled.java => ExecutablePermissionsTest.java} (84%) rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/{NewClustersRebootTestDisabled.java => NewClustersRebootTest.java} (95%) rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/{UpdateDisabledModuleTestDisabled.java => UpdateDisabledModuleTest.java} (84%) create mode 100644 autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/UpdateFromNbmTest.java create mode 100644 autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/UpdateUnitFactoryTest.java rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/services/{VerifyFileTestDisabled.java => VerifyFileTest.java} (95%) rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/updateprovider/{AutoupdateInfoParserTestDisabled.java => AutoupdateInfoParserTest.java} (90%) rename autoupdate.services/test/unit/src/org/netbeans/modules/autoupdate/updateprovider/{ => data}/malformed.xml (100%) -- To stop receiving notification emails like this one, please contact ['"comm...@netbeans.apache.org" <comm...@netbeans.apache.org>'].