File: playlist_table_test.cpp

package info (click to toggle)
libdjinterop 0.24.3%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,880 kB
  • sloc: cpp: 27,419; sql: 4,053; makefile: 3; sh: 2
file content (587 lines) | stat: -rw-r--r-- 21,329 bytes parent folder | download
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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*
    This file is part of libdjinterop.

    libdjinterop is free software: you can redistribute it and/or modify
    it under the terms of the GNU Lesser General Public License as published by
    the Free Software Foundation, either schema 3 of the License, or
    (at your option) any later version.

    libdjinterop is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU Lesser General Public License for more details.

    You should have received a copy of the GNU Lesser General Public License
    along with libdjinterop.  If not, see <http://www.gnu.org/licenses/>.
 */

#define BOOST_TEST_MODULE engine_v2_playlist_table_test
#include <boost/test/data/test_case.hpp>
#include <boost/test/included/unit_test.hpp>

#include <chrono>
#include <cstdint>
#include <sstream>
#include <stdexcept>

#include <djinterop/engine/engine.hpp>
#include <djinterop/engine/v2/engine_library.hpp>

#include "../../boost_test_printable.hpp"
#include "../../boost_test_utils.hpp"
#include "../../temporary_directory.hpp"

namespace utf = boost::unit_test;
namespace e = djinterop::engine;
namespace ev2 = djinterop::engine::v2;

namespace
{
ev2::playlist_row make_playlist_row(
    const std::string& title, int64_t parent_list_id = ev2::PARENT_LIST_ID_NONE,
    int64_t next_list_id = ev2::PLAYLIST_NO_NEXT_LIST_ID)
{
    return ev2::playlist_row{ev2::PLAYLIST_ROW_ID_NONE,
                             title,
                             parent_list_id,
                             true,
                             next_list_id,
                             std::chrono::system_clock::now(),
                             true};
}

ev2::playlist_row make_playlist_row(
    int64_t id, const std::string& title,
    int64_t parent_list_id = ev2::PARENT_LIST_ID_NONE,
    int64_t next_list_id = ev2::PLAYLIST_NO_NEXT_LIST_ID)
{
    return ev2::playlist_row{
        id,   title,        parent_list_id,
        true, next_list_id, std::chrono::system_clock::now(),
        true};
}
}  // anonymous namespace

BOOST_TEST_DECORATOR(*utf::description("add() root playlist to empty database"))
BOOST_DATA_TEST_CASE(add__empty_root__adds, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto row = make_playlist_row("Example");

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto all_ids = playlist_tbl.all_ids();
    std::set<int64_t> all_ids_set{all_ids.begin(), all_ids.end()};
    BOOST_CHECK_EQUAL(1, all_ids_set.size());
    BOOST_CHECK(all_ids_set.find(id) != all_ids_set.end());
}

BOOST_TEST_DECORATOR(
    *utf::description("add() root playlist to non-empty database"))
BOOST_DATA_TEST_CASE(add__nonempty_root__adds, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto prior_row = make_playlist_row("Example (Prior)");
    auto prior_id = playlist_tbl.add(prior_row);
    auto row = make_playlist_row("Example");

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto all_ids = playlist_tbl.all_ids();
    std::set<int64_t> all_ids_set{all_ids.begin(), all_ids.end()};
    BOOST_CHECK_EQUAL(2, all_ids_set.size());
    BOOST_CHECK(all_ids_set.find(prior_id) != all_ids_set.end());
    BOOST_CHECK(all_ids_set.find(id) != all_ids_set.end());
}

BOOST_TEST_DECORATOR(
    *utf::description("add() non-root playlist to empty database"))
BOOST_DATA_TEST_CASE(add__empty_nonroot__adds, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto row = make_playlist_row("Example", parent_id);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto all_ids = playlist_tbl.all_ids();
    std::set<int64_t> all_ids_set{all_ids.begin(), all_ids.end()};
    BOOST_CHECK_EQUAL(2, all_ids_set.size());
    BOOST_CHECK(all_ids_set.find(parent_id) != all_ids_set.end());
    BOOST_CHECK(all_ids_set.find(id) != all_ids_set.end());
}

BOOST_TEST_DECORATOR(
    *utf::description("add() non-root playlist to non-empty database"))
BOOST_DATA_TEST_CASE(add__nonempty_nonroot__adds, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto prior_row = make_playlist_row("Example (Prior)", parent_id);
    auto prior_id = playlist_tbl.add(prior_row);
    auto row = make_playlist_row("Example", parent_id);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto all_ids = playlist_tbl.all_ids();
    std::set<int64_t> all_ids_set{all_ids.begin(), all_ids.end()};
    BOOST_CHECK_EQUAL(3, all_ids_set.size());
    BOOST_CHECK(all_ids_set.find(parent_id) != all_ids_set.end());
    BOOST_CHECK(all_ids_set.find(prior_id) != all_ids_set.end());
    BOOST_CHECK(all_ids_set.find(id) != all_ids_set.end());
}

BOOST_TEST_DECORATOR(*utf::description("root_ids() after insertion at end"))
BOOST_DATA_TEST_CASE(
    root_ids__after_insert_end__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto prior_row_1 = make_playlist_row("A");
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B");
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row = make_playlist_row(
        "Example", ev2::PARENT_LIST_ID_NONE, ev2::PLAYLIST_NO_NEXT_LIST_ID);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("root_ids() after insertion at beginning"))
BOOST_DATA_TEST_CASE(
    root_ids__after_insert_beginning__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto prior_row_1 = make_playlist_row("A");
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B");
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row =
        make_playlist_row("Example", ev2::PARENT_LIST_ID_NONE, prior_id_1);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(*utf::description("root_ids() after insertion at middle"))
BOOST_DATA_TEST_CASE(
    root_ids__after_insert_middle__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto prior_row_1 = make_playlist_row("A");
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B");
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row =
        make_playlist_row("Example", ev2::PARENT_LIST_ID_NONE, prior_id_2);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(*utf::description("child_ids() after insertion at end"))
BOOST_DATA_TEST_CASE(
    child_ids__after_insert_end__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto prior_row_1 = make_playlist_row("A", parent_id);
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B", parent_id);
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row =
        make_playlist_row("Example", parent_id, ev2::PLAYLIST_NO_NEXT_LIST_ID);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto child_ids = playlist_tbl.child_ids(parent_id);
    auto iter = std::begin(child_ids);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter == std::end(child_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("child_ids() after insertion at beginning"))
BOOST_DATA_TEST_CASE(
    child_ids__after_insert_beginning__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto prior_row_1 = make_playlist_row("A", parent_id);
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B", parent_id);
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row =
        make_playlist_row("Example", parent_id, prior_id_1);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto child_ids = playlist_tbl.child_ids(parent_id);
    auto iter = std::begin(child_ids);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(child_ids));
}

BOOST_TEST_DECORATOR(*utf::description("child_ids() after insertion at middle"))
BOOST_DATA_TEST_CASE(
    child_ids__after_insert_middle__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto prior_row_1 = make_playlist_row("A", parent_id);
    auto prior_id_1 = playlist_tbl.add(prior_row_1);
    auto prior_row_2 = make_playlist_row("B", parent_id);
    auto prior_id_2 = playlist_tbl.add(prior_row_2);
    auto row =
        make_playlist_row("Example", parent_id, prior_id_2);

    // Act
    auto id = playlist_tbl.add(row);

    // Assert
    auto child_ids = playlist_tbl.child_ids(parent_id);
    auto iter = std::begin(child_ids);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(id, *iter++);
    BOOST_REQUIRE(iter != std::end(child_ids));
    BOOST_CHECK_EQUAL(prior_id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(child_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from beginning to middle, same parent"))
BOOST_DATA_TEST_CASE(
    update__beginning_to_middle__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto row_1 = make_playlist_row("A");
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B");
    auto id_2 = playlist_tbl.add(row_2);
    auto row_3 = make_playlist_row("C");
    auto id_3 = playlist_tbl.add(row_3);
    auto row = make_playlist_row(id_1, "A", ev2::PARENT_LIST_ID_NONE, id_3);

    // Act
    playlist_tbl.update(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_2, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_3, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from end to middle, same parent"))
BOOST_DATA_TEST_CASE(
    update__end_to_middle__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto row_1 = make_playlist_row("A");
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B");
    auto id_2 = playlist_tbl.add(row_2);
    auto row_3 = make_playlist_row("C");
    auto id_3 = playlist_tbl.add(row_3);
    auto row = make_playlist_row(id_3, "C", ev2::PARENT_LIST_ID_NONE, id_2);

    // Act
    playlist_tbl.update(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_3, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from middle to beginning, same parent"))
BOOST_DATA_TEST_CASE(
    update__middle_to_beginning__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto row_1 = make_playlist_row("A");
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B");
    auto id_2 = playlist_tbl.add(row_2);
    auto row_3 = make_playlist_row("C");
    auto id_3 = playlist_tbl.add(row_3);
    auto row = make_playlist_row(id_2, "B", ev2::PARENT_LIST_ID_NONE, id_1);

    // Act
    playlist_tbl.update(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_2, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_3, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from middle to end, same parent"))
BOOST_DATA_TEST_CASE(
    update__middle_to_end__ordered, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto row_1 = make_playlist_row("A");
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B");
    auto id_2 = playlist_tbl.add(row_2);
    auto row_3 = make_playlist_row("C");
    auto id_3 = playlist_tbl.add(row_3);
    auto row = make_playlist_row(
        id_2, "B", ev2::PARENT_LIST_ID_NONE, ev2::PLAYLIST_NO_NEXT_LIST_ID);

    // Act
    playlist_tbl.update(row);

    // Assert
    auto root_ids = playlist_tbl.root_ids();
    auto iter = std::begin(root_ids);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_1, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_3, *iter++);
    BOOST_REQUIRE(iter != std::end(root_ids));
    BOOST_CHECK_EQUAL(id_2, *iter++);
    BOOST_REQUIRE(iter == std::end(root_ids));
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from only child to root end"))
BOOST_DATA_TEST_CASE(
    update__only_child_to_root_end__moved, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto row_1 = make_playlist_row("A", parent_id);
    auto id_1 = playlist_tbl.add(row_1);
    auto row = make_playlist_row(
        id_1, "A", ev2::PARENT_LIST_ID_NONE, ev2::PLAYLIST_NO_NEXT_LIST_ID);

    // Act
    playlist_tbl.update(row);

    // Assert
    {
        auto root_ids = playlist_tbl.root_ids();
        auto iter = std::begin(root_ids);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(parent_id, *iter++);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(id_1, *iter++);
        BOOST_REQUIRE(iter == std::end(root_ids));
    }
    {
        auto child_ids = playlist_tbl.child_ids(parent_id);
        auto iter = std::begin(child_ids);
        BOOST_REQUIRE(iter == std::end(child_ids));
    }
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from first child to root end"))
BOOST_DATA_TEST_CASE(
    update__first_child_to_root_end__moved, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto row_1 = make_playlist_row("A", parent_id);
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B", parent_id);
    auto id_2 = playlist_tbl.add(row_2);
    auto row = make_playlist_row(
        id_1, "A", ev2::PARENT_LIST_ID_NONE, ev2::PLAYLIST_NO_NEXT_LIST_ID);

    // Act
    playlist_tbl.update(row);

    // Assert
    {
        auto root_ids = playlist_tbl.root_ids();
        auto iter = std::begin(root_ids);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(parent_id, *iter++);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(id_1, *iter++);
        BOOST_REQUIRE(iter == std::end(root_ids));
    }
    {
        auto child_ids = playlist_tbl.child_ids(parent_id);
        auto iter = std::begin(child_ids);
        BOOST_REQUIRE(iter != std::end(child_ids));
        BOOST_CHECK_EQUAL(id_2, *iter++);
        BOOST_REQUIRE(iter == std::end(child_ids));
    }
}

BOOST_TEST_DECORATOR(
    *utf::description("update() from last child to root beginning"))
BOOST_DATA_TEST_CASE(
    update__last_child_to_root_beginning__moved, e::supported_v2_schemas, schema)
{
    // Arrange
    auto library = ev2::engine_library::create_temporary(schema);
    auto db_uuid = library.information().get().uuid;
    auto playlist_tbl = library.playlist();
    auto parent_row = make_playlist_row("Parent");
    auto parent_id = playlist_tbl.add(parent_row);
    auto row_1 = make_playlist_row("A", parent_id);
    auto id_1 = playlist_tbl.add(row_1);
    auto row_2 = make_playlist_row("B", parent_id);
    auto id_2 = playlist_tbl.add(row_2);
    auto row = make_playlist_row(
        id_2, "B", ev2::PARENT_LIST_ID_NONE, parent_id);

    // Act
    playlist_tbl.update(row);

    // Assert
    {
        auto root_ids = playlist_tbl.root_ids();
        auto iter = std::begin(root_ids);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(id_2, *iter++);
        BOOST_REQUIRE(iter != std::end(root_ids));
        BOOST_CHECK_EQUAL(parent_id, *iter++);
        BOOST_REQUIRE(iter == std::end(root_ids));
    }
    {
        auto child_ids = playlist_tbl.child_ids(parent_id);
        auto iter = std::begin(child_ids);
        BOOST_REQUIRE(iter != std::end(child_ids));
        BOOST_CHECK_EQUAL(id_1, *iter++);
        BOOST_REQUIRE(iter == std::end(child_ids));
    }
}