blob: 43b9335c858984bf2324f266eea77a24b2c9282d [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.opencmis.fit.runtime;
import java.io.IOException;
import java.util.Properties;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.log4j.PropertyConfigurator;
import org.apache.opencmis.client.api.Session;
import org.apache.opencmis.client.api.SessionFactory;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.rules.MethodRule;
import org.junit.rules.TestWatchman;
import org.junit.runners.model.FrameworkMethod;
/**
* Create a OpenCMIS test session based on fixture parameter.
*/
public abstract class AbstractSessionTest {
protected Log log = LogFactory.getLog(this.getClass());
/**
* trace each junit error
*/
@Rule
public MethodRule watch = new TestWatchman() {
@Override
public void failed(Throwable e, FrameworkMethod method) {
super.failed(e, method);
AbstractSessionTest.this.log.error(method.getName(), e);
}
};
@BeforeClass
public static void classSetup() {
AbstractSessionTest.initializeLogging();
Fixture.logHeader();
}
/**
* Initialize logging support.
*/
private static void initializeLogging() {
Properties p = new Properties();
try {
p.load(AbstractSessionTest.class.getResourceAsStream("/log4j.properties"));
}
catch (IOException e) {
throw new RuntimeException(e);
}
PropertyConfigurator.configure(p);
}
/**
* test session
*/
protected Session session = null;
@Before
public void setUp() throws Exception {
SessionFactory factory = Fixture.getSessionFactory();
this.session = factory.createSession(Fixture.getParamter());
Fixture.setUpTestData(this.session);
}
@After
public void tearDown() throws Exception {
Fixture.teardownTestData(this.session);
}
}