4

A project I'm working on interacts heavily with Subversion, using svnkit.

Are there any examples on running a mock in-memory svn instance, to help facilitate testing etc?

Cheers

Marty

Marty Pitt
  • 28,822
  • 36
  • 122
  • 195

3 Answers3

4

It's quite straightforward to create a temporary SVN repository on the filesystem to use during the test which you can delete immediately at the end of the test. You would use file:// protocol to access it.

import static org.junit.Assert.*;
import java.io.*;
import org.apache.commons.io.FileUtils;
import org.junit.*;
import org.tmatesoft.svn.core.*;

public class SVNTest {

    private static final String path = "/tmp/testrepo";
    SVNURL tgtURL;

    @Before
    public void setUp() throws Exception {
        SVNRepositoryFactoryImpl.setup();
        tgtURL = SVNRepositoryFactory.createLocalRepository( new File( path ), true , false );
    }

    @After
    public void tearDown() throws IOException {
        FileUtils.deleteDirectory(new File(path));
    }

    @Test
    public void test() {
        fail("Not yet implemented");
    }

}
Richard Corfield
  • 2,489
  • 3
  • 21
  • 24
1

Why don't you just create a simple SVN repository with mock data ? It's just a few commands.

Valentin Rocher
  • 11,667
  • 45
  • 59
0

you may be intested in mockito, that should work fine with SVNkit

my 0.02$

dfa
  • 114,442
  • 31
  • 189
  • 228