| Dan Albert | e3ea058 | 2015-03-13 23:06:01 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 17 | #ifndef TEST_UTILS_H |
| 18 | #define TEST_UTILS_H |
| 19 | |
| Alex Vallée | d0ac74c | 2015-05-06 16:26:00 -0400 | [diff] [blame^] | 20 | #include <string> |
| 21 | |
| 22 | #include <base/macros.h> |
| 23 | |
| Dan Albert | e3ea058 | 2015-03-13 23:06:01 -0700 | [diff] [blame] | 24 | class TemporaryFile { |
| 25 | public: |
| 26 | TemporaryFile(); |
| 27 | ~TemporaryFile(); |
| 28 | |
| 29 | int fd; |
| Alex Vallée | d0ac74c | 2015-05-06 16:26:00 -0400 | [diff] [blame^] | 30 | char path[1024]; |
| Dan Albert | e3ea058 | 2015-03-13 23:06:01 -0700 | [diff] [blame] | 31 | |
| 32 | private: |
| Alex Vallée | d0ac74c | 2015-05-06 16:26:00 -0400 | [diff] [blame^] | 33 | void init(const std::string& tmp_dir); |
| 34 | |
| 35 | DISALLOW_COPY_AND_ASSIGN(TemporaryFile); |
| Dan Albert | e3ea058 | 2015-03-13 23:06:01 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
| Alex Vallée | d0ac74c | 2015-05-06 16:26:00 -0400 | [diff] [blame^] | 38 | #if !defined(_WIN32) |
| 39 | class TemporaryDir { |
| 40 | public: |
| 41 | TemporaryDir(); |
| 42 | ~TemporaryDir(); |
| 43 | |
| 44 | char path[1024]; |
| 45 | |
| 46 | private: |
| 47 | bool init(const std::string& tmp_dir); |
| 48 | |
| 49 | DISALLOW_COPY_AND_ASSIGN(TemporaryDir); |
| 50 | }; |
| 51 | #endif |
| 52 | |
| Dan Albert | e3ea058 | 2015-03-13 23:06:01 -0700 | [diff] [blame] | 53 | #endif // TEST_UTILS_H |