aboutsummaryrefslogtreecommitdiffstats
path: root/weaver/testsrc/org/aspectj/weaver/tools/cache/FlatFileCacheBackingTest.java
blob: 8c6df7ad8c0f3372a786fef710eeb9b8ce1627ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*******************************************************************************
 * Copyright (c) 2012 VMware, Inc.
 * 
 * All rights reserved. 
 * This program and the accompanying materials are made available 
 * under the terms of the Eclipse Public License v1.0 
 * which accompanies this distribution and is available at 
 * http://www.eclipse.org/legal/epl-v10.html 
 *  
 * Contributors:
 *  Lyor Goldstein
 *******************************************************************************/

package org.aspectj.weaver.tools.cache;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Map;
import java.util.TreeMap;

import org.aspectj.weaver.tools.cache.AbstractIndexedFileCacheBacking.IndexEntry;

/**
 * @author Lyor Goldstein
 */
public class FlatFileCacheBackingTest extends AsynchronousFileCacheBackingTestSupport {
    public FlatFileCacheBackingTest() {
        super();
    }

    @Override
    protected FlatFileCacheBacking createFileBacking(File dir) {
        return new FlatFileCacheBacking(dir);
    }

    public void testReadIndex () throws IOException {
        IndexEntry[]    entries={
                createIgnoredEntry("ignored"),
                createIndexEntry("weaved", false, false, bytes, bytes),
                createIndexEntry("generated", true, false, bytes, bytes)
            };
        File	indexFile=getIndexFile();
        writeIndex(indexFile, entries);
        Map<String, File> dataFiles=createDataFiles(entries);

        File							cacheDir=getCacheDir();
        AsynchronousFileCacheBacking    cache=createFileBacking(cacheDir);
        Map<String, IndexEntry> 		indexMap=cache.getIndexMap();
        assertEquals("Mismatched index size", entries.length, indexMap.size());

        Map<String, byte[]> bytesMap=cache.getBytesMap(); 
        assertEquals("Mismatched bytes size", dataFiles.size() /* the ignored one has no file */, bytesMap.size());
        
        for (IndexEntry entry : entries) {
            String  key=entry.key;
            assertNotNull("Missing entry for key=" + key, indexMap.get(key));
            
            if (entry.ignored) {
                assertNull("Unexpected bytes for ignored key=" + key, bytesMap.get(key));
            } else {
                assertArrayEquals("Mismatched contents for key=" + key, bytes, bytesMap.get(key));
            }
        }
    }

    public void testIgnoredBadCrcDataFiles () throws Exception {
        IndexEntry[]    entries={
                createIndexEntry("weaved-goodData", false, false, bytes, bytes),
                createIndexEntry("badData-weaved", false, false, bytes, bytes),
                createIndexEntry("generated-goodData", true, false, bytes, bytes),
                createIndexEntry("badData-generated", true, false, bytes, bytes)
            };
        File	indexFile=getIndexFile();
        writeIndex(indexFile, entries);

        Map<String,File>    dataFiles=createDataFiles(entries);
        long                newCrc=generateNewBytes();
        assertTrue("Bad new CRC", newCrc != (-1L));

        Map<String,File>    badFiles=new TreeMap<String, File>();
        for (IndexEntry entry : entries) {
            String  key=entry.key;
            if (key.startsWith("badData")) {
                File            file=dataFiles.get(key);
                OutputStream    out=new FileOutputStream(file);
                try {
                    out.write(bytes);
                } finally {
                    out.close();
                }
                dataFiles.remove(key);
                badFiles.put(key, file);
            }
        }

        File					cacheDir=getCacheDir();
        FlatFileCacheBacking    cache=createFileBacking(cacheDir);
        Map<String, IndexEntry> indexMap=cache.getIndexMap();
        assertEquals("Mismatched index size", dataFiles.size(), indexMap.size());

        Map<String, byte[]> bytesMap=cache.getBytesMap(); 
        assertEquals("Mismatched bytes size", dataFiles.size(), bytesMap.size());

        for (Map.Entry<String,File> badEntry : badFiles.entrySet()) {
            String  key=badEntry.getKey();
            assertFalse("Unexpectedly indexed: " + key, indexMap.containsKey(key));
            assertFalse("Unexpectedly loaded: " + key, bytesMap.containsKey(key));

            File    file=badEntry.getValue();
            assertFalse("Unexpectedly still readable: " + key, file.canRead());
        }
    }

    public void testSkipMissingDataFileOnReadIndex () throws IOException {
        IndexEntry[]    entries={
                createIndexEntry("weaved-noData", false, false, null, null),
                createIndexEntry("withData-weaved", false, false, bytes, bytes),
                createIndexEntry("generated-noData", true, false, null, null),
                createIndexEntry("withData-generated", true, false, bytes, bytes)
            };
        File	indexFile=getIndexFile();
        writeIndex(indexFile, entries);

        Map<String,File>    dataFiles=new TreeMap<String, File>();
        for (IndexEntry entry : entries) {
            String  key=entry.key;
            if (key.startsWith("withData")) {
                dataFiles.put(key, createDataFile(entry, bytes));
            }
        }

        File					cacheDir=getCacheDir();
        FlatFileCacheBacking    cache=createFileBacking(cacheDir);
        Map<String, IndexEntry> indexMap=cache.getIndexMap();
        assertEquals("Mismatched index size", dataFiles.size(), indexMap.size());

        Map<String, byte[]> bytesMap=cache.getBytesMap(); 
        assertEquals("Mismatched bytes size", dataFiles.size(), bytesMap.size());

        for (IndexEntry entry : entries) {
            String  key=entry.key;
            if (key.startsWith("withData")) {
                assertTrue("Not indexed: " + key, indexMap.containsKey(key));
                assertTrue("Not loaded: " + key, bytesMap.containsKey(key));
            } else {
                assertFalse("Unexpectedly indexed: " + key, indexMap.containsKey(key));
                assertFalse("Unexpectedly loaded: " + key, bytesMap.containsKey(key));
            }
        }
    }

}