Add support for creating detached heads
[jgit.git] / org.eclipse.jgit.test / tst / org / eclipse / jgit / lib / WindowCacheReconfigureTest.java
blob9e093c85bd68dabb8c812b363f430a44848090e7
1 /*
2 * Copyright (C) 2009, Google Inc.
3 * and other copyright owners as documented in the project's IP log.
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
10 * All rights reserved.
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
16 * - Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
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.
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.
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.
44 package org.eclipse.jgit.lib;
46 public class WindowCacheReconfigureTest extends RepositoryTestCase {
47 public void testConfigureCache_PackedGitLimit_0() {
48 try {
49 final WindowCacheConfig cfg = new WindowCacheConfig();
50 cfg.setPackedGitLimit(0);
51 WindowCache.reconfigure(cfg);
52 fail("incorrectly permitted PackedGitLimit = 0");
53 } catch (IllegalArgumentException e) {
58 public void testConfigureCache_PackedGitWindowSize_0() {
59 try {
60 final WindowCacheConfig cfg = new WindowCacheConfig();
61 cfg.setPackedGitWindowSize(0);
62 WindowCache.reconfigure(cfg);
63 fail("incorrectly permitted PackedGitWindowSize = 0");
64 } catch (IllegalArgumentException e) {
65 assertEquals("Invalid window size", e.getMessage());
69 public void testConfigureCache_PackedGitWindowSize_512() {
70 try {
71 final WindowCacheConfig cfg = new WindowCacheConfig();
72 cfg.setPackedGitWindowSize(512);
73 WindowCache.reconfigure(cfg);
74 fail("incorrectly permitted PackedGitWindowSize = 512");
75 } catch (IllegalArgumentException e) {
76 assertEquals("Invalid window size", e.getMessage());
80 public void testConfigureCache_PackedGitWindowSize_4097() {
81 try {
82 final WindowCacheConfig cfg = new WindowCacheConfig();
83 cfg.setPackedGitWindowSize(4097);
84 WindowCache.reconfigure(cfg);
85 fail("incorrectly permitted PackedGitWindowSize = 4097");
86 } catch (IllegalArgumentException e) {
87 assertEquals("Window size must be power of 2", e.getMessage());
91 public void testConfigureCache_PackedGitOpenFiles_0() {
92 try {
93 final WindowCacheConfig cfg = new WindowCacheConfig();
94 cfg.setPackedGitOpenFiles(0);
95 WindowCache.reconfigure(cfg);
96 fail("incorrectly permitted PackedGitOpenFiles = 0");
97 } catch (IllegalArgumentException e) {
98 assertEquals("Open files must be >= 1", e.getMessage());
102 public void testConfigureCache_PackedGitWindowSizeAbovePackedGitLimit() {
103 try {
104 final WindowCacheConfig cfg = new WindowCacheConfig();
105 cfg.setPackedGitLimit(1024);
106 cfg.setPackedGitWindowSize(8192);
107 WindowCache.reconfigure(cfg);
108 fail("incorrectly permitted PackedGitWindowSize > PackedGitLimit");
109 } catch (IllegalArgumentException e) {
110 assertEquals("Window size must be < limit", e.getMessage());
114 public void testConfigureCache_Limits1() {
115 // This test is just to force coverage over some lower bounds for
116 // the table. We don't want the table to wind up with too small
117 // of a size. This is highly dependent upon the table allocation
118 // algorithm actually implemented in WindowCache.
120 final WindowCacheConfig cfg = new WindowCacheConfig();
121 cfg.setPackedGitLimit(6 * 4096 / 5);
122 cfg.setPackedGitWindowSize(4096);
123 WindowCache.reconfigure(cfg);