bb754c0e4ac4d83e32e288d913869b014fb9f452
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / util / FileWatcherTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *    http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  *
20  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.util;
23
24 import static org.junit.Assert.*;
25
26 import java.io.File;
27
28 import org.junit.Test;
29 import org.mockito.Mockito;
30
31 public class FileWatcherTest {
32         
33         class FileWatcherExtension extends FileWatcher {
34
35                 public FileWatcherExtension(File file) {
36                         super(file);
37                 }
38
39                 @Override
40                 protected void onChange(File file) {
41                         System.out.println("do nothing");
42                 }
43         }
44
45         @Test
46         public void testFileWatcher() {
47                 File file = new File("helloworld");
48                 file.setLastModified(new Long(123));
49                 FileWatcher fileWatcher = new FileWatcherExtension(file);
50                 assertNotNull(fileWatcher);
51                 file.deleteOnExit();
52         }
53         
54         @Test(expected=NullPointerException.class)
55         public void testFileWatcher_nullConstructor() {
56                 FileWatcher fileWatcher = new FileWatcherExtension(null);
57                 assertNull(fileWatcher);
58         }
59         
60         @Test
61         public void testRun() {
62                 // verify that code is reachable outside of conditional check in run()
63                 File file = new File("helloworld");
64                 file.setLastModified(new Long(100));
65                 FileWatcher fileWatcher = new FileWatcherExtension(file);
66                 fileWatcher.run();
67                 file.deleteOnExit();
68         }
69
70         @Test
71         public void testOnChange() throws Exception {
72                 FileWatcher fileWatcher = Mockito.mock(FileWatcher.class, Mockito.CALLS_REAL_METHODS);
73                 
74                 fileWatcher.onChange(Mockito.any(File.class));
75                 
76                 Mockito.verify(fileWatcher).onChange(Mockito.any(File.class));
77         }
78 }