forked from qt-creator/qt-creator
Do not counstruct NativeFilePathView from temporary object. Change-Id: Ifcd6bc4878f6949e98de44089a2c2b3feca4795a Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
144 lines
3.7 KiB
C++
144 lines
3.7 KiB
C++
/****************************************************************************
|
|
**
|
|
** Copyright (C) 2017 The Qt Company Ltd.
|
|
** Contact: https://www.qt.io/licensing/
|
|
**
|
|
** This file is part of Qt Creator.
|
|
**
|
|
** Commercial License Usage
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
** accordance with the commercial license agreement provided with the
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
**
|
|
** GNU General Public License Usage
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
** General Public License version 3 as published by the Free Software
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
** included in the packaging of this file. Please review the following
|
|
** information to ensure the GNU General Public License requirements will
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
**
|
|
****************************************************************************/
|
|
|
|
#include "googletest.h"
|
|
|
|
#include <filepathview.h>
|
|
|
|
#include <utils/hostosinfo.h>
|
|
|
|
namespace {
|
|
|
|
using ClangBackEnd::NativeFilePathView;
|
|
|
|
Utils::PathString native(Utils::PathString path)
|
|
{
|
|
if (Utils::HostOsInfo::isWindowsHost())
|
|
path.replace('/', '\\');
|
|
|
|
return path;
|
|
}
|
|
|
|
TEST(NativeFilePathView, FilePathSlashForEmptyPath)
|
|
{
|
|
NativeFilePathView filePath("");
|
|
|
|
ASSERT_THAT(filePath.slashIndex(), -1);
|
|
}
|
|
|
|
TEST(NativeFilePathView, FilePathSlashForSingleSlash)
|
|
{
|
|
Utils::PathString nativePath = native("/");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.slashIndex(), 0);
|
|
}
|
|
|
|
TEST(NativeFilePathView, FilePathSlashForFileInRoot)
|
|
{
|
|
Utils::PathString nativePath = native("/file.h");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.slashIndex(), 0);
|
|
}
|
|
|
|
TEST(NativeFilePathView, FilePathSlashForSomeLongerPath)
|
|
{
|
|
Utils::PathString nativePath = native("/path/to/some/file.h");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.slashIndex(), 13);
|
|
}
|
|
|
|
TEST(NativeFilePathView, FilePathSlashForFileNameOnly)
|
|
{
|
|
Utils::PathString nativePath = native("file.h");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.slashIndex(), -1);
|
|
}
|
|
|
|
TEST(NativeFilePathView, DirectoryPathForEmptyPath)
|
|
{
|
|
NativeFilePathView filePath("");
|
|
|
|
ASSERT_THAT(filePath.directory(), "");
|
|
}
|
|
|
|
TEST(NativeFilePathView, DirectoryPathForSingleSlashPath)
|
|
{
|
|
Utils::PathString nativePath = native("/");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.directory(), "");
|
|
}
|
|
|
|
TEST(NativeFilePathView, DirectoryPathForLongerPath)
|
|
{
|
|
Utils::PathString nativePath = native("/path/to/some/file.h");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.directory(), native("/path/to/some"));
|
|
}
|
|
|
|
TEST(NativeFilePathView, DirectoryPathForFileNameOnly)
|
|
{
|
|
NativeFilePathView filePath{"file.h"};
|
|
|
|
ASSERT_THAT(filePath.directory(), IsEmpty());
|
|
}
|
|
|
|
TEST(NativeFilePathView, FileNameForEmptyPath)
|
|
{
|
|
NativeFilePathView filePath("");
|
|
|
|
ASSERT_THAT(filePath.name(), "");
|
|
}
|
|
|
|
TEST(NativeFilePathView, FileNameForSingleSlashPath)
|
|
{
|
|
Utils::PathString nativePath = native("/");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.name(), "");
|
|
}
|
|
|
|
TEST(NativeFilePathView, FileNameForLongerPath)
|
|
{
|
|
Utils::PathString nativePath = native("/path/to/some/file.h");
|
|
NativeFilePathView filePath(nativePath);
|
|
|
|
ASSERT_THAT(filePath.name(), "file.h");
|
|
}
|
|
|
|
TEST(NativeFilePathView, FileNameForFileNameOnly)
|
|
{
|
|
NativeFilePathView filePath{"file.h"};
|
|
|
|
ASSERT_THAT(filePath.name(), "file.h");
|
|
}
|
|
|
|
}
|