blob: 1531c201099fc228da7b03d12336a880992152ac [file] [log] [blame]
/*
* Copyright (C) 2019 The Android Open Source Project
*
* Licensed 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.
*/
#pragma once
#include <android-base/file.h>
#include <apex_manifest.pb.h>
#include <gtest/gtest.h>
#include "linkerconfig/apex.h"
struct ApexTest : ::testing::Test {
TemporaryDir tmp_dir;
std::string root;
void SetUp() override {
root = tmp_dir.path;
}
void PrepareApex(const std::string& apex_name,
const std::vector<std::string>& provide_libs,
const std::vector<std::string>& require_libs,
const std::vector<std::string>& jni_libs) {
::apex::proto::ApexManifest manifest;
manifest.set_name(apex_name);
for (auto lib : provide_libs) {
manifest.add_providenativelibs(lib);
}
for (auto lib : require_libs) {
manifest.add_requirenativelibs(lib);
}
for (auto lib : jni_libs) {
manifest.add_jnilibs(lib);
}
WriteFile("/apex/" + apex_name + "/apex_manifest.pb",
manifest.SerializeAsString());
}
void Mkdir(std::string dir_path) {
if (access(dir_path.c_str(), F_OK) == 0) return;
Mkdir(android::base::Dirname(dir_path));
ASSERT_NE(-1, mkdir(dir_path.c_str(), 0755) == -1)
<< "Failed to create a directory: " << dir_path;
}
void WriteFile(std::string file, std::string content) {
std::string file_path = root + file;
Mkdir(::android::base::Dirname(file_path));
ASSERT_TRUE(::android::base::WriteStringToFile(content, file_path))
<< "Failed to write a file: " << file_path;
}
};