📄 gpgencrypted_test.cpp
字号:
#include "../../tag.h"#include "../../gpgencrypted.h"using namespace gloox;#include <stdio.h>#include <locale.h>#include <string>int main( int /*argc*/, char** /*argv*/ ){ int fail = 0; std::string name; Tag *t; GPGEncrypted *d; Tag *x = new Tag( "x", "invalidencrypted" ); x->addAttribute( "xmlns", XMLNS_X_GPGENCRYPTED ); // ------- name = "parsing 0 tag"; d = new GPGEncrypted( 0 ); if( d->tag() != 0 ) { ++fail; printf( "test '%s' failed\n", name.c_str() ); } delete d; d = 0; // ------- name = "filled object/getters"; d = new GPGEncrypted( "invalidencrypted" ); if( d->encrypted() != "invalidencrypted" ) { ++fail; printf( "test '%s' failed\n", name.c_str() ); } delete d; d = 0; // ------- name = "filled object/tag()"; d = new GPGEncrypted( "invalidencrypted" ); t = d->tag(); if( !t || !t->hasAttribute( "xmlns", XMLNS_X_GPGENCRYPTED ) || t->cdata() != "invalidencrypted" ) { ++fail; printf( "test '%s' failed\n", name.c_str() ); } delete d; delete t; d = 0; t = 0; // ------- name = "from Tag/getters"; d = new GPGEncrypted( x ); if( d->encrypted() != "invalidencrypted" ) { ++fail; printf( "test '%s' failed\n", name.c_str() ); } delete d; d = 0; t = 0; // ------- name = "from Tag/tag()"; d = new GPGEncrypted( x ); t = d->tag(); if( !t || !t->hasAttribute( "xmlns", XMLNS_X_GPGENCRYPTED ) || t->cdata() != "invalidencrypted" ) { ++fail; printf( "test '%s' failed\n", name.c_str() ); } delete d; delete t; d = 0; t = 0; delete x; x = 0; if( fail == 0 ) { printf( "GPGEncrypted: all tests passed\n" ); return 0; } else { printf( "GPGEncrypted: %d test(s) failed\n", fail ); return 1; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -