blob: 4cfa06ba556fb87f7cde3e045274859f22721722 [file] [log] [blame]
Dan Alberte3ea0582015-03-13 23:06:01 -07001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Elliott Hughesf5224432016-03-23 15:04:52 -070017#ifndef ANDROID_BASE_TEST_UTILS_H
18#define ANDROID_BASE_TEST_UTILS_H
Dan Alberte3ea0582015-03-13 23:06:01 -070019
Alex Valléed0ac74c2015-05-06 16:26:00 -040020#include <string>
21
Elliott Hughesb6351622015-12-04 22:00:26 -080022#include <android-base/macros.h>
Alex Valléed0ac74c2015-05-06 16:26:00 -040023
Dan Alberte3ea0582015-03-13 23:06:01 -070024class TemporaryFile {
25 public:
26 TemporaryFile();
Yabin Cuia11c57e2017-12-06 14:20:07 -080027 explicit TemporaryFile(const std::string& tmp_dir);
Dan Alberte3ea0582015-03-13 23:06:01 -070028 ~TemporaryFile();
29
Tianjie Xu1852b802017-09-11 12:01:09 -070030 // Release the ownership of fd, caller is reponsible for closing the
31 // fd or stream properly.
32 int release();
33
Dan Alberte3ea0582015-03-13 23:06:01 -070034 int fd;
Alex Valléed0ac74c2015-05-06 16:26:00 -040035 char path[1024];
Dan Alberte3ea0582015-03-13 23:06:01 -070036
37 private:
Alex Valléed0ac74c2015-05-06 16:26:00 -040038 void init(const std::string& tmp_dir);
39
40 DISALLOW_COPY_AND_ASSIGN(TemporaryFile);
Dan Alberte3ea0582015-03-13 23:06:01 -070041};
42
Alex Valléed0ac74c2015-05-06 16:26:00 -040043class TemporaryDir {
44 public:
45 TemporaryDir();
46 ~TemporaryDir();
47
48 char path[1024];
49
50 private:
51 bool init(const std::string& tmp_dir);
52
53 DISALLOW_COPY_AND_ASSIGN(TemporaryDir);
54};
Alex Valléed0ac74c2015-05-06 16:26:00 -040055
Wei Wangcaee0eb2016-10-21 09:23:39 -070056class CapturedStderr {
57 public:
58 CapturedStderr();
59 ~CapturedStderr();
60
61 int fd() const;
62
63 private:
64 void init();
65 void reset();
66
67 TemporaryFile temp_file_;
68 int old_stderr_;
69
70 DISALLOW_COPY_AND_ASSIGN(CapturedStderr);
71};
72
Elliott Hughesf5224432016-03-23 15:04:52 -070073#endif // ANDROID_BASE_TEST_UTILS_H