Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 64ccdb26fd788ae2a29c702c68d5865dd3151cc2 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package org.eclipse.emf.cdo.tests.db4o;

import org.eclipse.emf.cdo.server.IRepository;
import org.eclipse.emf.cdo.server.IStore;
import org.eclipse.emf.cdo.tests.AllConfigs;
import org.eclipse.emf.cdo.tests.bugzilla.Bugzilla_261218_Test;
import org.eclipse.emf.cdo.tests.bugzilla.Bugzilla_324585_Test;
import org.eclipse.emf.cdo.tests.config.impl.ConfigTest;
import org.eclipse.emf.cdo.tests.config.impl.RepositoryConfig;

import java.util.List;
import java.util.Map;

import junit.framework.Test;
import junit.framework.TestSuite;

public class AllTestsMEMDB4O extends AllConfigs
{

  public static Test suite()
  {
    return new AllTestsMEMDB4O().getTestSuite("CDO Tests (MEMDB4O)");
  }

  @Override
  protected void initTestClasses(List<Class<? extends ConfigTest>> testClasses)
  {
    super.initTestClasses(testClasses);

    // Skipped because takes too much
    testClasses.remove(Bugzilla_261218_Test.class);
    testClasses.remove(Bugzilla_324585_Test.class);
  }

  @Override
  protected void initConfigSuites(TestSuite parent)
  {
    addScenario(parent, COMBINED, MemDB4ORepositoryConfig.INSTANCE, JVM, NATIVE);
  }

  public static class MemDB4ORepositoryConfig extends RepositoryConfig
  {
    public static final MemDB4ORepositoryConfig INSTANCE = new MemDB4ORepositoryConfig("DB4O");

    private static final long serialVersionUID = 1L;

    private transient boolean optimizing = false;

    public MemDB4ORepositoryConfig(String name)
    {
      super(name);
    }

    @Override
    protected void initRepositoryProperties(Map<String, String> props)
    {
      super.initRepositoryProperties(props);
      props.put(IRepository.Props.SUPPORTING_AUDITS, "false");
      props.put(IRepository.Props.SUPPORTING_BRANCHES, "false");
    }

    @Override
    protected IStore createStore(String repoName)
    {
      if (!isRestarting())
      {
        MEMDB4OStore.clearContainer();
      }
      return new MEMDB4OStore();
    }

    @Override
    protected boolean isOptimizing()
    {
      // Do NOT replace this with a hardcoded value!
      return optimizing;
    }
  }

}

Back to the top