forked from OSGeo/gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestlog.cpp
42 lines (35 loc) · 1.14 KB
/
testlog.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/******************************************************************************
* $Id$
*
* Project: GDAL
* Purpose: Test CPL_LOG
* Author: Even Rouault, even.rouault at spatialys.com
*
******************************************************************************
* Copyright (c) 2021, Even Rouault <even.rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#include "cpl_conv.h"
#include "cpl_error.h"
#include "cpl_vsi.h"
#include "gtest_include.h"
namespace
{
// ---------------------------------------------------------------------------
TEST(testlog, test)
{
const char *logname = "log_with_âccent.txt";
CPLSetConfigOption("CPL_LOG", logname);
CPLError(CE_Failure, CPLE_AppDefined, "test");
VSILFILE *fp = VSIFOpenL(logname, "rb");
char szGot[20 + 1];
size_t nRead = VSIFReadL(szGot, 1, 20, fp);
szGot[nRead] = 0;
VSIFCloseL(fp);
CPLCleanupErrorMutex();
VSIUnlink(logname);
EXPECT_TRUE(strstr(szGot, "ERROR 1") != nullptr) << szGot;
EXPECT_TRUE(strstr(szGot, "test") != nullptr) << szGot;
}
} // namespace