/** * Copyright (C) 2013-2015 all@code-story.net * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License */ package net.codestory.http.reload; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.timeout; import static org.mockito.Mockito.verify; import java.io.File; import java.io.IOException; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.TemporaryFolder; public class JdkWatchServiceTest { File folder; FolderChangeListener listener = mock(FolderChangeListener.class); @Rule public TemporaryFolder temp = new TemporaryFolder(); @Before public void createFolderToWatch() throws IOException { folder = temp.newFolder(); File parent = new File(folder, "folder"); parent.mkdirs(); } @Test public void watch_file_creation() throws IOException { JdkWatchService watcher = new JdkWatchService(folder.toPath()); watcher.onChange(listener); new File(folder, "file").createNewFile(); verify(listener, timeout(5000).atLeastOnce()).onChange(); watcher.stop(); } @Test public void watch_file_delete() throws IOException { new File(folder, "file").createNewFile(); JdkWatchService watcher = new JdkWatchService(folder.toPath()); watcher.onChange(listener); new File(folder, "file").delete(); verify(listener, timeout(5000).atLeastOnce()).onChange(); watcher.stop(); } }