성태의 닷넷 이야기
홈 주인
모아 놓은 자료
프로그래밍
질문/답변
사용자 관리
사용자
메뉴
아티클
외부 아티클
유용한 코드
온라인 기능
MathJax 입력기
최근 덧글
[정성태] VT sequences to "CONOUT$" vs. STD_O...
[정성태] NetCoreDbg is a managed code debugg...
[정성태] Evaluating tail call elimination in...
[정성태] What’s new in System.Text.Json in ....
[정성태] What's new in .NET 9: Cryptography ...
[정성태] 아... 제시해 주신 "https://akrzemi1.wordp...
[정성태] 다시 질문을 정리할 필요가 있을 것 같습니다. 제가 본문에...
[이승준] 완전히 잘못 짚었습니다. 댓글 지우고 싶네요. 검색을 해보...
[정성태] 우선 답글 감사합니다. ^^ 그런데, 사실 저 예제는 (g...
[이승준] 수정이 안되어서... byteArray는 BYTE* 타입입니다...
글쓰기
제목
이름
암호
전자우편
HTML
홈페이지
유형
제니퍼 .NET
닷넷
COM 개체 관련
스크립트
VC++
VS.NET IDE
Windows
Team Foundation Server
디버깅 기술
오류 유형
개발 환경 구성
웹
기타
Linux
Java
DDK
Math
Phone
Graphics
사물인터넷
부모글 보이기/감추기
내용
<div style='display: inline'> <h1 style='font-family: Malgun Gothic, Consolas; font-size: 20pt; color: #006699; text-align: center; font-weight: bold'>Visual Studio에서 C++ DLL을 대상으로 단위 테스트할 때 비정상 종료한다면?</h1> <p> Visual Studio에서 C++ 단위 테스트를 할 수 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Writing Unit tests for C/C++ with the Microsoft Unit Testing Framework for C++ ; <a target='tab' href='https://learn.microsoft.com/en-us/visualstudio/test/writing-unit-tests-for-c-cpp'>https://learn.microsoft.com/en-us/visualstudio/test/writing-unit-tests-for-c-cpp</a> </pre> <br /> 방법은 정적 라이브러리로 컴파일하거나, 동적 라이브러리로 컴파일해 import 하는 방법이 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Unit testing existing C++ applications with Test Explorer ; <a target='tab' href='https://learn.microsoft.com/en-us/visualstudio/test/how-to-use-microsoft-test-framework-for-cpp'>https://learn.microsoft.com/en-us/visualstudio/test/how-to-use-microsoft-test-framework-for-cpp</a> </pre> <br /> 윈도우 환경의 C/C++의 경우 대부분 DLL 유형으로 컴파일된 경우가 많을 테니 여기서는 DLL 환경으로만 제한해서 살펴보겠습니다.<br /> <br /> <hr style='width: 50%' /><br /> <br /> 예제와 함께 해 보는 것이 좋겠지요? ^^ 이를 위해 DLL에서 다음과 같은 함수를 export하고 있다고 가정해 보겠습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > #include <string> using namespace std; __declspec(dllexport) int GetLength1(<span style='color: blue; font-weight: bold'>wstring text</span>); int GetLength1(<span style='color: blue; font-weight: bold'>wstring text</span>) { return text.length(); } </pre> <br /> 위의 DLL 프로젝트를 단위 테스트하기 위해, "Native Unit Test Project" 유형의 프로젝트를 생성하고 다음과 같이 단위 테스트 함수를 만들어 줍니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > #include "stdafx.h" #include "CppUnitTest.h" #include "..\Win32Project1\Win32Project1.h" #pragma comment(lib, "..\\Out\\Win32Project1.lib") using namespace Microsoft::VisualStudio::CppUnitTestFramework; namespace UnitTest1 { TEST_CLASS(UnitTest1) { public: TEST_METHOD(TestMethod1) { wstring txt = L"1.0"; Assert::AreEqual(3, GetLength1(txt)); } }; } </pre> <br /> 그런데, 단위 테스트를 시작하면 다음과 같은 오류가 발생하는 경우가 있습니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Debug Assertion Failed! Program: ...\test.exe File: f:\dd\vctools\crt\crtw32\misc\dbgdel.cpp Line: 52 Expression: _BLOCK_TYPE_IS_VALID(pHead->nBlockUse) </pre> <br /> 또는 메시지가 이렇게도 나옵니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Debug Assertion Failed! Program: ...\test.dll File: minkernel\crts\ucrt\src\appcrt\heap\debug_heap.cpp Line: 980 Expression: __acrt_first_block == header </pre> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > Debug Assertion Failed! Program: ...MONEXTENSIONS\MICROSOFT\TESTWINDOW\vstest.executionengine.exe File: f:\dd\vctools\crt\crtw32\misc\dbgheap.c Line: 1424 Expression: _pFirstBlock == pHead </pre> <br /> 이것도 역시, 다음의 글에 설명한 내용의 연장선에 있는 문제입니다.<br /> <br /> <pre style='margin: 10px 0px 10px 10px; padding: 10px 0px 10px 10px; background-color: #fbedbb; overflow: auto; font-family: Consolas, Verdana;' > DLL에 정의된 C++ template 클래스의 복사 생성자 문제 ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/11153'>http://www.sysnet.pe.kr/2/0/11153</a> DLL에서 STL 객체를 인자/반환값으로 갖는 함수를 제공할 때, 그 함수를 외부에서 사용하는 경우 비정상 종료한다면? ; <a target='tab' href='http://www.sysnet.pe.kr/2/0/11154'>http://www.sysnet.pe.kr/2/0/11154</a> </pre> <br /> 가령, DLL 프로젝트의 "Platform Toolset"과 단위 테스트 프로젝트의 "Platform Toolset"이 다른 경우이거나 Debug/Release 모드가 달랐을 때 발생합니다.<br /> <br /> 아울러 이러한 문제는 <a target='tab' href='https://www.sysnet.pe.kr/2/0/800'>DLL을 CRT에 대해 정적 링크로 만든 경우</a>에도, new/delete 등이 DLL 내/외부에서 CRT 버전이 다른 상태로 호출이 된다면 동일한 문제가 발생할 수 있습니다.<br /> <br /> (<a target='tab' href='https://www.sysnet.pe.kr/bbs/DownloadAttachment.aspx?fid=1126&boardid=331301885'>첨부 파일은 이 글의 예제 코드를 포함</a>합니다.)<br /> <br /> <hr style='width: 50%' /><br /> <br /> 암튼, Visual C++을 위한 단위 테스트 도구가 생겼으니 나름 괜찮은 것 같습니다. ^^ 이렇게 "Test Explorer"를 통해 테스트 목록을 관리할 수 있고,<br /> <br /> <img alt='vcpp_unit_test_1.png' src='/SysWebRes/bbs/vcpp_unit_test_1.png' /><br /> <br /> "Analyze Code Coverage for Selected Tests" (단축키: Ctrl + Shift + B) 메뉴를 선택해 단위 테스트와 함께 코드 커버리지까지 할 수 있습니다.<br /> <br /> <img alt='vcpp_unit_test_2.png' src='/SysWebRes/bbs/vcpp_unit_test_2.png' /><br /> <br /> 그럼, 다음과 같이 코드 커버리지가 된 백분율과 함께 단위 테스트 시 커버리지가 되었던 코드의 영역을 색상 별로 구분해 확인할 수 있습니다.<br /> <br /> <img onclick='toggle_img(this)' class='imgView' alt='vcpp_unit_test_3.png' src='/SysWebRes/bbs/vcpp_unit_test_3.png' /><br /> <br /> 이 외에도, Test Explorer의 "Run Tests After Build" 버튼을 눌러두면 이후 Visual C++ 프로젝트를 빌드할 때마다 자동으로 단위 테스트 프로젝트를 실행하는 것도 가능합니다.<br /> </p><br /> <br /><hr /><span style='color: Maroon'>[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]</span> </div>
첨부파일
스팸 방지용 인증 번호
9546
(왼쪽의 숫자를 입력해야 합니다.)