Skip to content

Instantly share code, notes, and snippets.

@rherrmann
Last active May 20, 2022 08:13
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rherrmann/10130951 to your computer and use it in GitHub Desktop.
Save rherrmann/10130951 to your computer and use it in GitHub Desktop.
/*******************************************************************************
* Copyright (c) 2014 Rüdiger Herrmann
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Rüdiger Herrmann - initial API and implementation
******************************************************************************/
package com.codeaffine.jgit.example;
import static org.eclipse.jgit.lib.ConfigConstants.CONFIG_SUBMODULE_SECTION;
import static org.eclipse.jgit.lib.Constants.DOT_GIT_MODULES;
import static org.eclipse.jgit.submodule.SubmoduleStatusType.INITIALIZED;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.io.File;
import java.io.IOException;
import java.util.Map;
import org.eclipse.jgit.api.Git;
import org.eclipse.jgit.api.SubmoduleAddCommand;
import org.eclipse.jgit.api.errors.GitAPIException;
import org.eclipse.jgit.lib.Config;
import org.eclipse.jgit.lib.ObjectId;
import org.eclipse.jgit.lib.Repository;
import org.eclipse.jgit.lib.StoredConfig;
import org.eclipse.jgit.storage.file.FileBasedConfig;
import org.eclipse.jgit.submodule.SubmoduleStatus;
import org.eclipse.jgit.submodule.SubmoduleWalk;
import org.eclipse.jgit.treewalk.filter.PathFilter;
import org.eclipse.jgit.util.FS;
import org.eclipse.jgit.util.FileUtils;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
public class SubmoduleLearningTest {
@Rule
public final TemporaryFolder tempFolder = new TemporaryFolder();
private Git library;
private Git parent;
@Test
public void testAddSubmodule() throws Exception {
String uri = library.getRepository().getDirectory().getCanonicalPath();
SubmoduleAddCommand addCommand = parent.submoduleAdd();
addCommand.setURI( uri );
addCommand.setPath( "modules/library" );
Repository repository = addCommand.call();
repository.close();
File parentWorkDir = parent.getRepository().getWorkTree();
assertTrue( new File( parentWorkDir, "modules/library" ).isDirectory() );
assertTrue( new File( parentWorkDir, "modules/library/readme.txt" ).isFile() );
assertTrue( new File( parentWorkDir, ".gitmodules" ).isFile() );
}
@Test
public void testListSubmodules() throws Exception {
addLibrarySubmodule();
Map<String, SubmoduleStatus> submodules = parent.submoduleStatus().call();
assertEquals( 1, submodules.size() );
SubmoduleStatus submoduleStatus = submodules.get( "modules/library" );
assertEquals( INITIALIZED, submoduleStatus.getType() );
}
@Test
public void testUpdateSubmodule() throws Exception {
addLibrarySubmodule();
ObjectId newHead = library.commit().setMessage( "Another change" ).call();
File workDir = parent.getRepository().getWorkTree();
Git librarySubmodule = Git.open( new File( workDir, "modules/library" ) );
librarySubmodule.pull().call();
librarySubmodule.close();
parent.add().addFilepattern( "modules/library" ).call();
parent.commit().setMessage( "Update submodule" ).call();
assertEquals( newHead, getSubmoduleHead( "modules/library" ) );
}
@Test
public void testRemoveSubmodule() throws Exception {
String uri = library.getRepository().getDirectory().getCanonicalPath();
Repository repository = parent.submoduleAdd().setURI( uri ).setPath( "modules/library" ).call();
repository.close();
removeSubmodule( parent.getRepository(), "modules/library" );
Config gitSubmodulesConfig = getGitSubmodulesConfig( parent.getRepository() );
StoredConfig repositoryConfig = parent.getRepository().getConfig();
assertEquals( 0, gitSubmodulesConfig.getNames( CONFIG_SUBMODULE_SECTION, "modules/library" ).size() );
assertEquals( 0, repositoryConfig.getNames( CONFIG_SUBMODULE_SECTION, "modules/library" ).size() );
assertEquals( ObjectId.zeroId(), getSubmoduleHead( "modules/library" ) );
assertFalse( new File( repository.getWorkTree(), "modules/library" ).exists() );
assertTrue( parent.status().call().isClean() );
}
@Test
public void testSubmoduleWalk() throws Exception {
addLibrarySubmodule();
int submoduleCount = 0;
SubmoduleWalk walk = SubmoduleWalk.forIndex( parent.getRepository() );
while( walk.next() ) {
Repository submoduleRepository = walk.getRepository();
Git.wrap( submoduleRepository ).fetch().call();
submoduleRepository.close();
submoduleCount++;
}
walk.release();
assertEquals( 1, submoduleCount );
}
@Test
public void testSubmoduleSync() throws Exception {
addLibrarySubmodule();
parent.getRepository().getConfig().unsetSection( "submodule", "modules/library" );
parent.submoduleSync().call();
SubmoduleWalk walk = SubmoduleWalk.forIndex( parent.getRepository() );
walk.next();
String configUrl = walk.getConfigUrl();
walk.release();
assertEquals( library.getRepository().getDirectory(), new File( configUrl ) );
}
@Before
public void setUp() throws Exception {
library = initRepository( "library" );
populateLibraryRepository();
parent = initRepository( "parent" );
}
@After
public void tearDown() {
library.close();
parent.close();
}
private Git initRepository( String name ) throws Exception {
return Git.init().setDirectory( tempFolder.newFolder( name ) ).call();
}
private void populateLibraryRepository() throws Exception {
new File( library.getRepository().getWorkTree(), "readme.txt" ).createNewFile();
library.add().addFilepattern( "." ).call();
library.commit().setMessage( "Initial commit" ).call();
}
private ObjectId getSubmoduleHead( String path ) throws Exception {
SubmoduleWalk walk = SubmoduleWalk.forIndex( parent.getRepository() );
walk.setFilter( PathFilter.create( path ) );
walk.next();
ObjectId result = walk.getObjectId();
walk.release();
return result;
}
private Repository addLibrarySubmodule() throws IOException, GitAPIException {
String uri = library.getRepository().getDirectory().getCanonicalPath();
Repository repository = parent.submoduleAdd().setURI( uri ).setPath( "modules/library" ).call();
repository.close();
return repository;
}
private static void removeSubmodule( Repository repository, String submodulePath )
throws Exception
{
StoredConfig gitSubmodulesConfig = getGitSubmodulesConfig( repository );
gitSubmodulesConfig.unsetSection( CONFIG_SUBMODULE_SECTION, submodulePath );
gitSubmodulesConfig.save();
StoredConfig repositoryConfig = repository.getConfig();
repositoryConfig.unsetSection( CONFIG_SUBMODULE_SECTION, submodulePath );
repositoryConfig.save();
Git git = Git.wrap( repository );
git.add().addFilepattern( DOT_GIT_MODULES ).call();
git.rm().setCached( true ).addFilepattern( submodulePath ).call();
git.commit().setMessage( "Remove submodule" ).call();
FileUtils.delete( new File( repository.getWorkTree(), submodulePath ), FileUtils.RECURSIVE );
}
private static StoredConfig getGitSubmodulesConfig( Repository repository ) {
File gitSubmodulesFile = new File( repository.getWorkTree(), DOT_GIT_MODULES );
return new FileBasedConfig( null, gitSubmodulesFile, FS.DETECTED );
}
}
@jorkey
Copy link

jorkey commented May 19, 2022

Hi. I try tests with org.eclipse.jgit 5.13.0.202109080827-r and got error on open submodule repository.
The same occurs with newest version 6.1.0.202203080745-r and old version 5.6.1.202002131546-r.

org.eclipse.jgit.errors.RepositoryNotFoundException: repository not found: /private/var/folders/wt/gy90z_3n0s37x0p9n8hr90pc0000gn/T/junit8019771657754624476/parent/modules/library

at org.eclipse.jgit.lib.BaseRepositoryBuilder.build(BaseRepositoryBuilder.java:627)
at org.eclipse.jgit.api.Git.open(Git.java:93)
at org.eclipse.jgit.api.Git.open(Git.java:73)
at com.vyulabs.libs.git.SubmoduleLearningTest.testUpdateSubmodule(SubmoduleLearningTest.java:84)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.rules.ExternalResource$1.evaluate(ExternalResource.java:48)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:69)
at com.intellij.rt.junit.IdeaTestRunner$Repeater$1.execute(IdeaTestRunner.java:38)
at com.intellij.rt.execution.junit.TestsRepeater.repeat(TestsRepeater.java:11)
at com.intellij.rt.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:35)
at com.intellij.rt.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:235)
at com.intellij.rt.junit.JUnitStarter.main(JUnitStarter.java:54)

@rherrmann
Copy link
Author

I am sorry to read that you're having trouble to run the examples, but I'm afraid I don't have an environment at hand to reproduce the problem. Perhaps the error is related to the temp directory. Did you try to replace that with a fixed, existing directory in initRepository?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment