|
|
@ -1,7 +1,7 @@ |
|
|
|
/* |
|
|
|
/* |
|
|
|
* Copyright (C) 2008, Charles O'Farrell <charleso@charleso.org> |
|
|
|
* Copyright (C) 2008, Charles O'Farrell <charleso@charleso.org> |
|
|
|
* Copyright (C) 2009-2010, Google Inc. |
|
|
|
* Copyright (C) 2009-2010, Google Inc. |
|
|
|
* Copyright (C) 2008-2009, Robin Rosenberg <robin.rosenberg@dewire.com> |
|
|
|
* Copyright (C) 2008-2013, Robin Rosenberg <robin.rosenberg@dewire.com> |
|
|
|
* and other copyright owners as documented in the project's IP log. |
|
|
|
* and other copyright owners as documented in the project's IP log. |
|
|
|
* |
|
|
|
* |
|
|
|
* This program and the accompanying materials are made available |
|
|
|
* This program and the accompanying materials are made available |
|
|
@ -283,6 +283,21 @@ public class RefUpdateTest extends SampleDataRepositoryTestCase { |
|
|
|
delete(ref, Result.FORCED); |
|
|
|
delete(ref, Result.FORCED); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
|
|
|
|
public void testDeleteWithoutHead() throws IOException { |
|
|
|
|
|
|
|
// Prepare repository without HEAD
|
|
|
|
|
|
|
|
RefUpdate refUpdate = db.updateRef(Constants.HEAD, true); |
|
|
|
|
|
|
|
refUpdate.setForceUpdate(true); |
|
|
|
|
|
|
|
refUpdate.setNewObjectId(ObjectId.zeroId()); |
|
|
|
|
|
|
|
Result updateResult = refUpdate.update(); |
|
|
|
|
|
|
|
assertEquals(Result.FORCED, updateResult); |
|
|
|
|
|
|
|
Result deleteHeadResult = db.updateRef(Constants.HEAD).delete(); |
|
|
|
|
|
|
|
assertEquals(Result.NO_CHANGE, deleteHeadResult); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Any result is ok as long as it's not an NPE
|
|
|
|
|
|
|
|
db.updateRef(Constants.R_HEADS + "master").delete(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
@Test |
|
|
|
public void testRefKeySameAsName() { |
|
|
|
public void testRefKeySameAsName() { |
|
|
|
Map<String, Ref> allRefs = db.getAllRefs(); |
|
|
|
Map<String, Ref> allRefs = db.getAllRefs(); |
|
|
|