View Javadoc
1   /*
2    * Copyright (C) 2009, Google Inc.
3    * and other copyright owners as documented in the project's IP log.
4    *
5    * This program and the accompanying materials are made available
6    * under the terms of the Eclipse Distribution License v1.0 which
7    * accompanies this distribution, is reproduced below, and is
8    * available at http://www.eclipse.org/org/documents/edl-v10.php
9    *
10   * All rights reserved.
11   *
12   * Redistribution and use in source and binary forms, with or
13   * without modification, are permitted provided that the following
14   * conditions are met:
15   *
16   * - Redistributions of source code must retain the above copyright
17   *   notice, this list of conditions and the following disclaimer.
18   *
19   * - Redistributions in binary form must reproduce the above
20   *   copyright notice, this list of conditions and the following
21   *   disclaimer in the documentation and/or other materials provided
22   *   with the distribution.
23   *
24   * - Neither the name of the Eclipse Foundation, Inc. nor the
25   *   names of its contributors may be used to endorse or promote
26   *   products derived from this software without specific prior
27   *   written permission.
28   *
29   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
30   * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
31   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
34   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36   * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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 		// This test is just to force coverage over some lower bounds for
130 		// the table. We don't want the table to wind up with too small
131 		// of a size. This is highly dependent upon the table allocation
132 		// algorithm actually implemented in WindowCache.
133 		//
134 		final WindowCacheConfig cfg = new WindowCacheConfig();
135 		cfg.setPackedGitLimit(6 * 4096 / 5);
136 		cfg.setPackedGitWindowSize(4096);
137 		cfg.install();
138 	}
139 }