aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_x509_dn.cpp
blob: f7a672a73438983f4a3ee91494aa67b171835a54 (plain)
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
/*
* (C) 2017 Jack Lloyd
*
* Botan is released under the Simplified BSD License (see license.txt)
*/

#include "tests.h"

#if defined(BOTAN_HAS_ASN1)
   #include <botan/x509_dn.h>
   #include <botan/ber_dec.h>
#endif

namespace Botan_Tests {

#if defined(BOTAN_HAS_ASN1)
class X509_DN_Comparisons_Tests : public Text_Based_Test
   {
   public:
      X509_DN_Comparisons_Tests() : Text_Based_Test("x509_dn.vec", "DN1,DN2") {}

      Test::Result run_one_test(const std::string& type, const VarMap& vars) override
         {
         const std::vector<uint8_t> dn_bits1 = get_req_bin(vars, "DN1");
         const std::vector<uint8_t> dn_bits2 = get_req_bin(vars, "DN2");
         const bool dn_same = (type == "Equal");

         Test::Result result("X509_DN comparisons");
         try
            {
            Botan::X509_DN dn1;
            Botan::BER_Decoder bd1(dn_bits1);
            dn1.decode_from(bd1);

            Botan::X509_DN dn2;
            Botan::BER_Decoder bd2(dn_bits2);
            dn2.decode_from(bd2);

            const bool compared_same = (dn1 == dn2);
            result.test_eq("Comparison matches expected", dn_same, compared_same);
            }
         catch(Botan::Exception& e)
            {
            result.test_failure(e.what());
            }

         return result;
         }
   };

BOTAN_REGISTER_TEST("x509_dn_cmp", X509_DN_Comparisons_Tests);
#endif

}