znone
2021-10-05 6a6b55518847de8d8de8b963a117c53f0c93f67f
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
#include "stdafx.h"
#include "TestMysql.h"
#include <fstream>
#include <array>
#include <iomanip>
#include "md5.h"
#include "../include/qtl_mysql.hpp"
 
using namespace std;
 
struct TestMysqlRecord
{
    uint32_t id;
    char name[33];
    qtl::mysql::time create_time;
 
    TestMysqlRecord()
    {
        memset(this, 0, sizeof(TestMysqlRecord));
    }
 
    void print() const
    {
        printf("ID=\"%d\", Name=\"%s\"\n",
            id, name);
    }
};
 
namespace qtl
{
    template<>
    inline void bind_record<qtl::mysql::statement, TestMysqlRecord>(qtl::mysql::statement& command, TestMysqlRecord&& v)
    {
        qtl::bind_fields(command, v.id, v.name, v.create_time);
    }
}
 
TestMysql::TestMysql()
{
    id=0;
    TEST_ADD(TestMysql::test_dual)
    TEST_ADD(TestMysql::test_clear)
    TEST_ADD(TestMysql::test_insert)
    TEST_ADD(TestMysql::test_select)
    TEST_ADD(TestMysql::test_update)
    TEST_ADD(TestMysql::test_insert2)
    TEST_ADD(TestMysql::test_iterator)
    TEST_ADD(TestMysql::test_insert_blob)
    TEST_ADD(TestMysql::test_select_blob)
    TEST_ADD(TestMysql::test_any)
        //TEST_ADD(TestMysql::test_insert_stream)
    //TEST_ADD(TestMysql::test_fetch_stream)
}
 
inline void TestMysql::connect(qtl::mysql::database& db)
{
    TEST_ASSERT_MSG(db.open("localhost", "root", "", "test")==true, "Cannot connect to database");
}
 
void TestMysql::test_dual()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.query("select 0, 'hello world' from dual",
            [](uint32_t i, const std::string& str) {
                printf("0=\"%d\", 'hello world'=\"%s\"\n",
                    i, str.data());
        });
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_select()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.query("select * from test where id=?", 0, id, 
            [](const qtl::indicator<uint32_t>& id, const std::string& name, const qtl::mysql::time& create_time) {
                printf("ID=\"%d\", Name=\"%s\"\n",
                    id.data, name.data());
        });
 
        db.query("select * from test where id=?", 0, id,
            [](const TestMysqlRecord& record) {
                printf("ID=\"%d\", Name=\"%s\"\n",
                    record.id, record.name);
        });
 
        db.query("select * from test where id=?", 0, id, 
            &TestMysqlRecord::print);
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_insert()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        id=db.insert("insert into test(Name, CreateTime) values(?, now())",
            "test_user");
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
    TEST_ASSERT_MSG(id>0, "insert failture.");
}
 
void TestMysql::test_insert2()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        uint64_t affected=0;
        qtl::mysql::statement stmt=db.open_command("insert into test(Name, CreateTime) values(?, now())");
        qtl::execute(stmt, &affected, "second_user", "third_user");
        TEST_ASSERT_MSG(affected==2, "Cannot insert 2 records to table test.");
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_update()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.execute_direct("update test set Name=? WHERE ID=?", NULL,
            "other_user", id);
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
    TEST_ASSERT_MSG(id>0, "insert failture.");
}
 
void TestMysql::test_clear()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.simple_execute("delete from test");
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_iterator()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        cout<<"after insert all:"<<endl;
        for(auto& record : db.result<TestMysqlRecord>("select * from test"))
        {
            printf("ID=\"%d\", Name=\"%s\"\n",
                record.id, record.name);
        }
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_insert_blob()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
#ifdef _WIN32
        const char filename[]="C:\\windows\\explorer.exe";
#else
        const char filename[]="/bin/sh";
#endif //_WIN32
        fstream fs(filename, ios::binary|ios::in);
        TEST_ASSERT_MSG(fs, "Cannot open test file.");
        unsigned char md5[16]={0};
        char md5_hex[33]={0};
        get_md5(fs, md5);
        mysql_hex_string(md5_hex, (char*)md5, sizeof(md5));
        printf("MD5 of file %s: %s.\n", filename, md5_hex);
 
        db.simple_execute("DELETE FROM test_blob");
 
        fs.clear();
        fs.seekg(0, ios::beg);
        id=db.insert("INSERT INTO test_blob (Filename, Content, MD5) values(?, ?, ?)",
            forward_as_tuple(filename, (istream&)fs, qtl::const_blob_data(md5, sizeof(md5))));
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_select_blob()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        const char dest_file[]="explorer.exe";
        fstream fs(dest_file, ios::binary|ios::in|ios::out|ios::trunc);
        TEST_ASSERT_MSG(fs, "Cannot open test file.");
        unsigned char md5[16]={0};
        char md5_hex[33]={0};
 
        fs.seekg(ios::beg);
        std::string source_file;
        db.query_first("SELECT Filename, Content, MD5 FROM test_blob WHERE id=?", make_tuple(id),
            forward_as_tuple(source_file, (ostream&)fs, qtl::blob_data(md5, sizeof(md5))));
        fs.flush();
        mysql_hex_string(md5_hex, (char*)md5, sizeof(md5));
        printf("MD5 of file %s stored in database: %s.\n", source_file.data(), md5_hex);
        fs.clear();
        fs.seekg(0, ios::beg);
        get_md5(fs, md5);
        mysql_hex_string(md5_hex, (char*)md5, sizeof(md5));
        printf("MD5 of file %s: %s.\n", dest_file, md5_hex);
    }
    catch(qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_insert_stream()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        qtl::blob_writer writer = [](std::ostream& s) {
            for (size_t i = 0; i != 100; i++)
            {
                s << i << ": ";
                for (size_t j = 0; j <= i; j++)
                    s << char('a' + j % 26);
                s << endl;
                for (size_t j = 0; j <= i; j++)
                    s << '-';
                s << endl;
            }
        };
        id = db.insert("INSERT INTO test_stream (Data) values(?)",
                writer);
    }
    catch (qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::test_fetch_stream()
{
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.query("SELECT Data from test_stream", [](qtl::mysql::blobbuf&& buf) {
            istream s(&buf);
            string str;
            while (!s.eof())
            {
                getline(s, str);
                cout << str << endl;
            }
            s.clear(ios_base::goodbit | ios_base::eofbit);
            s.seekg(0, ios::beg);
            if (s.good())
            {
                cout << "again:" << endl;
                while (!s.eof())
                {
                    getline(s, str);
                    cout << str << endl;
                }
            }
        });
    }
    catch (qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
}
 
void TestMysql::get_md5(std::istream& is, unsigned char* result)
{
    std::array<char, 64*1024> buffer;
    MD5_CTX context;
    MD5Init(&context);
    while(!is.eof())
    {
        is.read(&buffer.front(), buffer.size());
        MD5Update(&context, (unsigned char*)buffer.data(), (unsigned int)is.gcount());
    }
    MD5Final(result, &context);
}
 
void TestMysql::test_any()
{
#ifdef _QTL_ENABLE_CPP17
 
    qtl::mysql::database db;
    connect(db);
 
    try
    {
        db.query("select 0, 'hello world', now() from dual",
            [](const std::any& i, const std::any& str, const std::any& now) {
                const qtl::mysql::time& time = std::any_cast<const qtl::mysql::time&>(now);
                struct tm tm;
                time.as_tm(tm);
                cout << "0=\"" << std::any_cast<int32_t>(i) << "\", 'hello world'=\"" <<
                    std::any_cast<const std::string&>(str) << "\", now=\"" <<
                    std::put_time(&tm, "%c") << "\" \n";
        });
    }
    catch (qtl::mysql::error& e)
    {
        ASSERT_EXCEPTION(e);
    }
    catch (std::bad_cast& e)
    {
        ASSERT_EXCEPTION(e);
    }
#endif
}
 
int main(int argc, char* argv[])
{
    Test::TextOutput output(Test::TextOutput::Verbose);
 
    cout<<endl<<"Testing MYSQL:"<<endl;
    TestMysql test_mysql; 
    test_mysql.run(output);
    return 0;
}