aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit.test/tst/org/eclipse/jgit/internal/storage/commitgraph/GraphObjectIndexTest.java
blob: b533d5c985c2f3c628231c162a57031c7c8a46b1 (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
/*
 * Copyright (C) 2023, Google LLC
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Distribution License v. 1.0 which is available at
 * https://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

package org.eclipse.jgit.internal.storage.commitgraph;

import org.eclipse.jgit.lib.ObjectId;
import org.junit.Test;
import static org.junit.Assert.assertEquals;

public class GraphObjectIndexTest {

  @Test
  public void findGraphPosition_noObjInBucket() throws CommitGraphFormatException {
    GraphObjectIndex idx = new GraphObjectIndex(100,
        new byte[256 * 4], new byte[] {});
    int graphPosition = idx.findGraphPosition(
        ObjectId.fromString("731dfd4c5eb6f88b98e983b9b0551b3562a0c46c"));
    assertEquals(-1, graphPosition);
  }

}