aboutsummaryrefslogtreecommitdiffstats
path: root/persistence/src/vespa/persistence/spi/test.cpp
blob: b91f30562c91b67b77004fa66cc168d60de79ff3 (plain) (blame)
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
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "test.h"
#include "docentry.h"
#include <vespa/document/test/make_bucket_space.h>
#include <vespa/document/fieldvalue/document.h>

using document::BucketId;
using document::BucketSpace;
using document::test::makeBucketSpace;

namespace storage::spi::test {

Bucket
makeSpiBucket(BucketId bucketId)
{
    return Bucket(document::Bucket(makeBucketSpace(), bucketId));
}

std::unique_ptr<DocEntry>
cloneDocEntry(const DocEntry & e) {
    std::unique_ptr<DocEntry> ret;
    if (e.getDocument()) {
        ret = DocEntry::create(e.getTimestamp(), std::make_unique<Document>(*e.getDocument()), e.getSize());
    } else if (e.getDocumentId()) {
        ret = DocEntry::create(e.getTimestamp(), e.getMetaEnum(), *e.getDocumentId());
    } else {
        ret = DocEntry::create(e.getTimestamp(), e.getMetaEnum());
    }
    return ret;
}

bool
equal(const DocEntry & a, const DocEntry & b) {
    if (a.getTimestamp() != b.getTimestamp()) return false;
    if (a.getMetaEnum() != b.getMetaEnum()) return false;
    if (a.getSize() != b.getSize()) return false;

    if (a.getDocument()) {
        if (!b.getDocument()) return false;
        if (*a.getDocument() != *b.getDocument()) return false;
    } else {
        if (b.getDocument()) return false;
    }
    if (a.getDocumentId()) {
        if (!b.getDocumentId()) return false;
        if (*a.getDocumentId() != *b.getDocumentId()) return false;
    } else {
        if (b.getDocumentId()) return false;
    }

    return true;
}

}