imagej / imagej-updater

The automatic updater for ImageJ
Other
12 stars 15 forks source link

Add deletion check to test #73

Closed frauzufall closed 5 years ago

frauzufall commented 5 years ago

The current test for uploading is pretending things are working when they are not.

The current webdav uploader has a reflection hack overriding the default GET method of a HTTP request by special ones like DELETE or OPTIONS. For HTTPS, this hack does not work. Therefore, when assuming the DELETE method is called, the GET method is called instead. In case the file is present, it returns 200 - all good. The test is assuming deleting worked and continues..

This PR adds a test if deleted files really don't exist anymore afterwards. It also adds a boolean isDeleted(String path) function to Deleter interface. Other Uploaders must implement this method, otherwise NotImplementedException is thrown when running this test. The Exception is the reason why I added the commons-lang dependency..

Not happy with the naming of isUpdateSiteEmpty() either since the test is only checking if the db.xml.gz is present.. But since it's a public method I was not sure about renaming it.

frauzufall commented 5 years ago

This happened here: https://github.com/imagej/imagej-updater/commit/41bc3f9c7081f52475062cc1cd69a921cc88d6b3