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  package org.eclipse.jgit.internal.storage.file;
45  
46  import static org.junit.Assert.assertEquals;
47  import static org.junit.Assert.fail;
48  
49  import org.eclipse.jgit.junit.RepositoryTestCase;
50  import org.eclipse.jgit.storage.file.WindowCacheConfig;
51  import org.junit.Test;
52  
53  public class WindowCacheReconfigureTest extends RepositoryTestCase {
54  	@Test
55  	public void testConfigureCache_PackedGitLimit_0() {
56  		try {
57  			final WindowCacheConfig cfg = new WindowCacheConfig();
58  			cfg.setPackedGitLimit(0);
59  			cfg.install();
60  			fail("incorrectly permitted PackedGitLimit = 0");
61  		} catch (IllegalArgumentException e) {
62  			
63  		}
64  	}
65  
66  	@Test
67  	public void testConfigureCache_PackedGitWindowSize_0() {
68  		try {
69  			final WindowCacheConfig cfg = new WindowCacheConfig();
70  			cfg.setPackedGitWindowSize(0);
71  			cfg.install();
72  			fail("incorrectly permitted PackedGitWindowSize = 0");
73  		} catch (IllegalArgumentException e) {
74  			assertEquals("Invalid window size", e.getMessage());
75  		}
76  	}
77  
78  	@Test
79  	public void testConfigureCache_PackedGitWindowSize_512() {
80  		try {
81  			final WindowCacheConfig cfg = new WindowCacheConfig();
82  			cfg.setPackedGitWindowSize(512);
83  			cfg.install();
84  			fail("incorrectly permitted PackedGitWindowSize = 512");
85  		} catch (IllegalArgumentException e) {
86  			assertEquals("Invalid window size", e.getMessage());
87  		}
88  	}
89  
90  	@Test
91  	public void testConfigureCache_PackedGitWindowSize_4097() {
92  		try {
93  			final WindowCacheConfig cfg = new WindowCacheConfig();
94  			cfg.setPackedGitWindowSize(4097);
95  			cfg.install();
96  			fail("incorrectly permitted PackedGitWindowSize = 4097");
97  		} catch (IllegalArgumentException e) {
98  			assertEquals("Window size must be power of 2", e.getMessage());
99  		}
100 	}
101 
102 	@Test
103 	public void testConfigureCache_PackedGitOpenFiles_0() {
104 		try {
105 			final WindowCacheConfig cfg = new WindowCacheConfig();
106 			cfg.setPackedGitOpenFiles(0);
107 			cfg.install();
108 			fail("incorrectly permitted PackedGitOpenFiles = 0");
109 		} catch (IllegalArgumentException e) {
110 			assertEquals("Open files must be >= 1", e.getMessage());
111 		}
112 	}
113 
114 	@Test
115 	public void testConfigureCache_PackedGitWindowSizeAbovePackedGitLimit() {
116 		try {
117 			final WindowCacheConfig cfg = new WindowCacheConfig();
118 			cfg.setPackedGitLimit(1024);
119 			cfg.setPackedGitWindowSize(8192);
120 			cfg.install();
121 			fail("incorrectly permitted PackedGitWindowSize > PackedGitLimit");
122 		} catch (IllegalArgumentException e) {
123 			assertEquals("Window size must be < limit", e.getMessage());
124 		}
125 	}
126 
127 	@Test
128 	public void testConfigureCache_Limits1() {
129 		
130 		
131 		
132 		
133 		
134 		final WindowCacheConfig cfg = new WindowCacheConfig();
135 		cfg.setPackedGitLimit(6 * 4096 / 5);
136 		cfg.setPackedGitWindowSize(4096);
137 		cfg.install();
138 	}
139 }