[1] | 1 | package geniusweb.profilesserver;
|
---|
| 2 |
|
---|
| 3 | import static org.junit.Assert.assertEquals;
|
---|
| 4 | import static org.junit.Assert.assertNotNull;
|
---|
| 5 | import static org.junit.Assert.assertNull;
|
---|
| 6 | import static org.junit.Assert.assertTrue;
|
---|
| 7 |
|
---|
| 8 | import java.io.BufferedWriter;
|
---|
| 9 | import java.io.File;
|
---|
| 10 | import java.io.FileNotFoundException;
|
---|
| 11 | import java.io.FileWriter;
|
---|
| 12 | import java.io.IOException;
|
---|
| 13 | import java.net.URISyntaxException;
|
---|
| 14 | import java.nio.file.Files;
|
---|
| 15 | import java.nio.file.Path;
|
---|
| 16 | import java.nio.file.Paths;
|
---|
| 17 | import java.util.Collections;
|
---|
| 18 | import java.util.LinkedList;
|
---|
| 19 | import java.util.List;
|
---|
| 20 | import java.util.logging.Level;
|
---|
| 21 |
|
---|
| 22 | import org.junit.Before;
|
---|
| 23 | import org.junit.Test;
|
---|
| 24 |
|
---|
| 25 | import com.fasterxml.jackson.databind.ObjectMapper;
|
---|
| 26 |
|
---|
| 27 | import geniusweb.profile.Profile;
|
---|
| 28 | import geniusweb.profile.utilityspace.LinearAdditiveUtilitySpace;
|
---|
| 29 | import geniusweb.profilesserver.events.ChangeEvent;
|
---|
| 30 | import geniusweb.profilesserver.events.DomainChangeEvent;
|
---|
| 31 | import geniusweb.profilesserver.events.ProfileChangeEvent;
|
---|
| 32 | import tudelft.utilities.files.FileInfo;
|
---|
| 33 | import tudelft.utilities.files.FileWatcher;
|
---|
| 34 | import tudelft.utilities.immutablelist.Tuple;
|
---|
| 35 | import tudelft.utilities.listener.Listenable;
|
---|
| 36 | import tudelft.utilities.listener.Listener;
|
---|
| 37 | import tudelft.utilities.logging.Reporter;
|
---|
| 38 |
|
---|
| 39 | /**
|
---|
| 40 | * Most tests are using a (copy of ) a real filesystem repository. This is
|
---|
| 41 | * because the AutoUpdatingProfilesFactory accesses the real filesystem that we
|
---|
| 42 | * can't properly mock.
|
---|
| 43 | *
|
---|
| 44 | */
|
---|
| 45 | public class AutoUpdatingProfilesFactoryTest {
|
---|
| 46 | private static final String JOBS = "jobs";
|
---|
| 47 | private static final String JOB1 = "jobs/jobs1";
|
---|
| 48 | private final Path REPO_DIRECTORY = Paths
|
---|
| 49 | .get("src/main/webapp/domainsrepo/");
|
---|
| 50 | private List<String> warnings;
|
---|
| 51 | private Path copyrepodir;
|
---|
| 52 | private AutoUpdatingProfilesFactory factory;
|
---|
| 53 | private final long HIGHRATE = 500; // fast so that we can test quickly.
|
---|
| 54 | private final List<ChangeEvent> changes = new LinkedList<>();
|
---|
| 55 |
|
---|
| 56 | @Before
|
---|
| 57 | public void before() throws IOException, URISyntaxException {
|
---|
| 58 | final Path dir = Files.createTempDirectory("profilestest");
|
---|
| 59 | copyrepodir = Paths.get(dir.toString(), "repo");
|
---|
| 60 | copyFolder(REPO_DIRECTORY, copyrepodir);
|
---|
| 61 |
|
---|
| 62 | System.out.println("copy placed in " + copyrepodir);
|
---|
| 63 | Reporter logger = new Reporter() {
|
---|
| 64 |
|
---|
| 65 | @Override
|
---|
| 66 | public void log(Level level, String string, Throwable e) {
|
---|
| 67 | if (level.intValue() >= Level.WARNING.intValue()) {
|
---|
| 68 | warnings.add(string);
|
---|
| 69 | }
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | @Override
|
---|
| 73 | public void log(Level level, String string) {
|
---|
| 74 | if (level.intValue() >= Level.WARNING.intValue()) {
|
---|
| 75 | warnings.add(string);
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | };
|
---|
| 80 |
|
---|
| 81 | factory = new AutoUpdatingProfilesFactory(logger) {
|
---|
| 82 |
|
---|
| 83 | @Override
|
---|
| 84 | protected Path getRootDir() {
|
---|
| 85 | return copyrepodir;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | @Override
|
---|
| 89 | protected Listenable<Tuple<FileInfo, FileInfo>> getFileWatcher(
|
---|
| 90 | File file) {
|
---|
| 91 | return new FileWatcher(file, HIGHRATE - 100, 2);
|
---|
| 92 | }
|
---|
| 93 |
|
---|
| 94 | };
|
---|
| 95 |
|
---|
| 96 | factory.addListener(new Listener<ChangeEvent>() {
|
---|
| 97 |
|
---|
| 98 | @Override
|
---|
| 99 | public void notifyChange(ChangeEvent evt) {
|
---|
| 100 | changes.add(evt);
|
---|
| 101 | }
|
---|
| 102 | });
|
---|
| 103 |
|
---|
| 104 | warnings = new LinkedList<>();
|
---|
| 105 |
|
---|
| 106 | }
|
---|
| 107 |
|
---|
| 108 | /**
|
---|
| 109 | * test loading the repo
|
---|
| 110 | */
|
---|
| 111 | @Test
|
---|
| 112 | public void loadRepoTest() throws InterruptedException {
|
---|
| 113 | assertEquals(Collections.EMPTY_LIST, warnings);
|
---|
| 114 | assertNotNull(factory.getDomain(JOBS));
|
---|
| 115 | assertNotNull(factory.getProfile(JOB1));
|
---|
| 116 |
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | @Test
|
---|
| 120 | public void getDomainsTest() {
|
---|
[3] | 121 | assertTrue(factory.getDomains().size() > 2);
|
---|
| 122 | assertTrue(factory.getDomains().contains(JOBS));
|
---|
| 123 | assertTrue(factory.getDomains().contains(JOBS));
|
---|
| 124 | assertTrue(factory.getDomains().contains("7issues"));
|
---|
[1] | 125 |
|
---|
| 126 | }
|
---|
| 127 |
|
---|
| 128 | @Test
|
---|
| 129 | public void removeProfileTest() throws InterruptedException {
|
---|
| 130 |
|
---|
| 131 | copyrepodir.resolve("jobs/jobs1.json").toFile().delete();
|
---|
| 132 | Thread.sleep(HIGHRATE);
|
---|
| 133 |
|
---|
| 134 | assertEquals(1, changes.size());
|
---|
| 135 | assertTrue(changes.get(0) instanceof ProfileChangeEvent);
|
---|
| 136 | assertEquals(Collections.EMPTY_LIST, warnings);
|
---|
| 137 | assertNotNull(factory.getDomain(JOBS));
|
---|
| 138 | assertNull(factory.getProfile(JOB1));
|
---|
| 139 | }
|
---|
| 140 |
|
---|
| 141 | @Test
|
---|
| 142 | public void removeDomainTest() throws InterruptedException {
|
---|
| 143 |
|
---|
| 144 | copyrepodir.resolve("jobs/jobs.json").toFile().delete();
|
---|
| 145 | Thread.sleep(HIGHRATE);
|
---|
| 146 |
|
---|
[2] | 147 | assertEquals(4, changes.size());
|
---|
[1] | 148 | assertTrue(changes.get(0) instanceof ProfileChangeEvent);
|
---|
| 149 | assertTrue(changes.get(1) instanceof ProfileChangeEvent);
|
---|
[2] | 150 | assertTrue(changes.get(2) instanceof ProfileChangeEvent);
|
---|
| 151 | assertTrue(changes.get(3) instanceof DomainChangeEvent);
|
---|
[1] | 152 | assertEquals(1, warnings.size()); // jobs domain file missing
|
---|
| 153 | assertNull(factory.getDomain(JOBS));
|
---|
| 154 | assertNull(factory.getProfile(JOB1));
|
---|
| 155 |
|
---|
| 156 | }
|
---|
| 157 |
|
---|
| 158 | @Test
|
---|
| 159 | public void renameDomainTest() throws InterruptedException {
|
---|
| 160 |
|
---|
| 161 | assertTrue(copyrepodir.resolve(JOBS).toFile()
|
---|
| 162 | .renameTo(copyrepodir.resolve("otherjobs").toFile()));
|
---|
| 163 | Thread.sleep(HIGHRATE);
|
---|
| 164 |
|
---|
[2] | 165 | assertEquals(4, changes.size());
|
---|
[1] | 166 | assertTrue(changes.get(0) instanceof ProfileChangeEvent);
|
---|
| 167 | assertTrue(changes.get(1) instanceof ProfileChangeEvent);
|
---|
[2] | 168 | assertTrue(changes.get(2) instanceof ProfileChangeEvent);
|
---|
| 169 | assertTrue(changes.get(3) instanceof DomainChangeEvent);
|
---|
[1] | 170 | assertEquals(1, warnings.size()); // wrong domain file, wrong profile
|
---|
| 171 | assertNull(factory.getDomain(JOBS));
|
---|
| 172 | assertNull(factory.getProfile(JOB1));
|
---|
| 173 | assertNull(factory.getDomain("otherjobs"));
|
---|
| 174 | }
|
---|
| 175 |
|
---|
| 176 | @Test
|
---|
| 177 | public void addProfileTest() throws InterruptedException, IOException {
|
---|
| 178 | LinearAdditiveUtilitySpace profile = (LinearAdditiveUtilitySpace) factory
|
---|
| 179 | .getProfile(JOB1);
|
---|
| 180 | Profile newprofile = new LinearAdditiveUtilitySpace(profile.getDomain(),
|
---|
| 181 | "jobs9", profile.getUtilities(), profile.getWeights(),
|
---|
| 182 | profile.getReservationBid());
|
---|
| 183 |
|
---|
| 184 | ObjectMapper jackson = new ObjectMapper();
|
---|
| 185 | BufferedWriter writer = new BufferedWriter(new FileWriter(
|
---|
| 186 | copyrepodir.resolve("jobs/jobs9.json").toFile()));
|
---|
| 187 | writer.write(jackson.writeValueAsString(newprofile));
|
---|
| 188 | writer.close();
|
---|
| 189 |
|
---|
| 190 | Thread.sleep(HIGHRATE);
|
---|
| 191 |
|
---|
| 192 | assertEquals(1, changes.size());
|
---|
| 193 | assertTrue(changes.get(0) instanceof ProfileChangeEvent);
|
---|
| 194 | assertTrue(warnings.isEmpty());
|
---|
| 195 | assertNotNull(factory.getProfile("jobs/jobs2"));
|
---|
| 196 | }
|
---|
| 197 |
|
---|
| 198 | /**
|
---|
| 199 | * We add domain as jobs8 but it has internally the name jobs9.
|
---|
| 200 | */
|
---|
| 201 | @Test
|
---|
| 202 | public void addWrongProfileTest() throws InterruptedException, IOException {
|
---|
| 203 | LinearAdditiveUtilitySpace profile = (LinearAdditiveUtilitySpace) factory
|
---|
| 204 | .getProfile(JOB1);
|
---|
| 205 | Profile newprofile = new LinearAdditiveUtilitySpace(profile.getDomain(),
|
---|
| 206 | "jobs9", profile.getUtilities(), profile.getWeights(),
|
---|
| 207 | profile.getReservationBid());
|
---|
| 208 |
|
---|
| 209 | ObjectMapper jackson = new ObjectMapper();
|
---|
| 210 | BufferedWriter writer = new BufferedWriter(new FileWriter(
|
---|
| 211 | copyrepodir.resolve("jobs/jobs8.json").toFile()));
|
---|
| 212 | writer.write(jackson.writeValueAsString(newprofile));
|
---|
| 213 | writer.close();
|
---|
| 214 |
|
---|
| 215 | Thread.sleep(HIGHRATE);
|
---|
| 216 |
|
---|
| 217 | // the bad profile should be completely ignored but we should get
|
---|
| 218 | // warnings.
|
---|
| 219 | assertEquals(0, changes.size());
|
---|
| 220 | assertEquals(1, warnings.size());
|
---|
| 221 | }
|
---|
| 222 |
|
---|
| 223 | /**
|
---|
| 224 | * We remove jobs domain.
|
---|
| 225 | */
|
---|
| 226 | @Test
|
---|
| 227 | public void removeRootdirTest() throws InterruptedException, IOException {
|
---|
| 228 | assertNotNull(factory.getDomain(JOBS));
|
---|
| 229 |
|
---|
| 230 | delete(copyrepodir.resolve(JOBS).toFile());
|
---|
| 231 | Thread.sleep(HIGHRATE);
|
---|
| 232 |
|
---|
| 233 | assertNull(factory.getDomain(JOBS));
|
---|
| 234 | assertNull(factory.getProfile(JOB1));
|
---|
| 235 |
|
---|
[2] | 236 | assertEquals(4, changes.size());
|
---|
[1] | 237 | assertTrue(changes.get(0) instanceof ProfileChangeEvent);
|
---|
| 238 | assertTrue(changes.get(1) instanceof ProfileChangeEvent);
|
---|
[2] | 239 | assertTrue(changes.get(2) instanceof ProfileChangeEvent);
|
---|
| 240 | assertTrue(changes.get(3) instanceof DomainChangeEvent);
|
---|
[1] | 241 | assertEquals(0, warnings.size());
|
---|
| 242 | }
|
---|
| 243 |
|
---|
| 244 | /**
|
---|
| 245 | * Copy files and all sub-files.
|
---|
| 246 | *
|
---|
| 247 | * @param source
|
---|
| 248 | * @param dest
|
---|
| 249 | */
|
---|
| 250 | private void copy(Path source, Path dest) {
|
---|
| 251 | try {
|
---|
| 252 | Files.copy(source, dest);
|
---|
| 253 | } catch (IOException e) {
|
---|
| 254 | e.printStackTrace();
|
---|
| 255 | }
|
---|
| 256 | }
|
---|
| 257 |
|
---|
| 258 | private void copyFolder(Path src, Path dest) throws IOException {
|
---|
| 259 | Files.walk(src).forEach(
|
---|
| 260 | source -> copy(source, dest.resolve(src.relativize(source))));
|
---|
| 261 | }
|
---|
| 262 |
|
---|
| 263 | /**
|
---|
| 264 | * recursively delete file and all subfiles.
|
---|
| 265 | *
|
---|
| 266 | * @param f the file to be deleted. can be directory.
|
---|
| 267 | * @throws IOException if file can't be deleted. This halts the delete
|
---|
| 268 | * procedure immediately.
|
---|
| 269 | */
|
---|
| 270 | private void delete(File f) throws IOException {
|
---|
| 271 | if (f.isDirectory()) {
|
---|
| 272 | for (File c : f.listFiles())
|
---|
| 273 | delete(c);
|
---|
| 274 | }
|
---|
| 275 | if (!f.delete())
|
---|
| 276 | throw new FileNotFoundException("Failed to delete file: " + f);
|
---|
| 277 | }
|
---|
| 278 | }
|
---|