blob: 32212ac6ba0299dd1b9ccc29eabe76bc89e47758 [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.
*/
#include <CppUTest/TestHarness.h>
#include <CppUTest/CommandLineTestRunner.h>
extern "C" {
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include "celix_launcher.h"
#include "framework.h"
static framework_pt framework = NULL;
static bundle_context_pt context = NULL;
static void setupFm(void) {
int rc = 0;
rc = celixLauncher_launch("config.properties", &framework);
CHECK_EQUAL(CELIX_SUCCESS, rc);
bundle_pt bundle = NULL;
rc = framework_getFrameworkBundle(framework, &bundle);
CHECK_EQUAL(CELIX_SUCCESS, rc);
rc = bundle_getContext(bundle, &context);
CHECK_EQUAL(CELIX_SUCCESS, rc);
}
static void teardownFm(void) {
int rc = 0;
celixLauncher_stop(framework);
celixLauncher_waitForShutdown(framework);
celixLauncher_destroy(framework);
context = NULL;
framework = NULL;
}
static void testFramework(void) {
//intentional empty. start/shutdown test
printf("testing startup/shutdown single framework\n");
}
//TODO test register / use service
}
TEST_GROUP(CelixFramework) {
void setup() {
setupFm();
}
void teardown() {
teardownFm();
}
};
TEST(CelixFramework, testFramework) {
testFramework();
}