Skip to content

Commit

Permalink
Merge pull request #777 from m-tmatma/feature/CNativeClear
Browse files Browse the repository at this point in the history
CNative::Clear の実装を改善
  • Loading branch information
m-tmatma authored Feb 2, 2019
2 parents fde6480 + 25510c3 commit 4245d6e
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 1 deletion.
2 changes: 2 additions & 0 deletions sakura_core/basis/CStrictInteger.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
#ifndef SAKURA_CSTRICTINTEGER_6F202774_0F82_4BB7_B107_37DE5443309E_H_
#define SAKURA_CSTRICTINTEGER_6F202774_0F82_4BB7_B107_37DE5443309E_H_

#include "primitive.h" // for Int

//int以外の整数型もintにキャストして扱う
#define STRICTINT_OTHER_TYPE_AS_INT(TYPE) \
Me& operator += (TYPE rhs) { return operator += ((int)rhs); } \
Expand Down
1 change: 1 addition & 0 deletions sakura_core/basis/SakuraBasis.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@

#else
// -- -- 通常のintで単位型を定義
#include "primitive.h" // for Int

//ロジック単位
typedef int CLogicInt;
Expand Down
2 changes: 1 addition & 1 deletion sakura_core/mem/CNative.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
//! 空っぽにする
void CNative::Clear()
{
this->SetRawData("",0);
this->_GetMemory()->_SetRawLength(0);
}
92 changes: 92 additions & 0 deletions tests/unittests/test-cnative.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
/*! @file */
/*
Copyright (C) 2018-2019 Sakura Editor Organization
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented;
you must not claim that you wrote the original software.
If you use this software in a product, an acknowledgment
in the product documentation would be appreciated but is
not required.
2. Altered source versions must be plainly marked as such,
and must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#include <gtest/gtest.h>
#include "mem/CNativeW.h"
#include "mem/CNativeA.h"

/*!
CNativeW::Clear のデータサイズのクリアをテストする
1-1. 固定データを追加する
1-2. バッファの状態を取得する
1-3. バッファの状態をチェックする
2-1. CNativeW をクリアする
2-2. クリア後のバッファの状態を取得する
2-3. クリア後のバッファの状態をチェックする
3-1. 固定データを再追加する
3-2. バッファの状態を取得する
3-3. バッファの状態をチェックする
*/
TEST(CNativeW, Clear)
{
constexpr const WCHAR* fixedPatternStr = L"abc";
constexpr const int fixedPatternLen = 3;

CNativeW stringW;

// 1-1. 固定データを追加する

stringW.AppendString(fixedPatternStr); // 固定データを追加する

// 1-2. バッファの状態を取得する

auto orgCapacity = stringW.capacity(); // データ追加後にバッファサイズを取得する
auto orgLength = stringW.GetStringLength(); // Clear() 前にデータサイズを取得する

// 1-3. バッファの状態をチェックする

EXPECT_GT(orgCapacity, 0); // データ追加後のバッファサイズを確認する
EXPECT_EQ(orgLength, fixedPatternLen); // データ追加後のデータサイズを確認する

// 2-1. CNativeW をクリアする

stringW.Clear(); // CNativeW をクリアする

// 2-2. クリア後のバッファの状態を取得する

auto newCapacity = stringW.capacity(); // Clear() 後にバッファサイズを取得する
auto newLength = stringW.GetStringLength(); // Clear() 後にデータサイズを取得する

// 2-3. クリア後のバッファの状態をチェックする

EXPECT_EQ(orgCapacity, newCapacity); // Clear() 後にバッファサイズが変わっていないのを確認する
EXPECT_EQ(newLength, 0); // Clear() 後にデータが空なのを確認する

// 3-1. 固定データを再追加する

stringW.AppendString(fixedPatternStr); // Clear() 後に固定データを再追加する

// 3-2. バッファの状態を取得する

auto newCapacity2 = stringW.capacity(); // 再追加後にバッファサイズを取得する
auto newLength2 = stringW.GetStringLength(); // 再追加後にデータサイズを取得する

// 3-3. バッファの状態をチェックする

EXPECT_EQ(orgCapacity, newCapacity2); // 再追加後にバッファサイズが変わっていないのを確認する
EXPECT_EQ(newLength2, fixedPatternLen); // 再追加後にデータサイズを確認する
}

0 comments on commit 4245d6e

Please sign in to comment.