blob: 310b0226e15e71e7e605fdebdf6e5d78ec762463 (
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
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "gtest/gtest.h"
#include "nsCOMPtr.h"
#include "nsIPrefService.h"
#include "nsIX509Cert.h"
#include "nsIX509CertDB.h"
#include "nsServiceManagerUtils.h"
TEST(psm_CertDB, Test)
{
{
nsCOMPtr<nsIPrefBranch> prefs(do_GetService(NS_PREFSERVICE_CONTRACTID));
ASSERT_TRUE(prefs)
<< "couldn't get nsIPrefBranch";
// When PSM initializes, it attempts to get some localized strings.
// As a result, Android flips out if this isn't set.
nsresult rv = prefs->SetBoolPref("intl.locale.matchOS", true);
ASSERT_TRUE(NS_SUCCEEDED(rv))
<< "couldn't set pref 'intl.locale.matchOS'";
nsCOMPtr<nsIX509CertDB> certdb(do_GetService(NS_X509CERTDB_CONTRACTID));
ASSERT_TRUE(certdb)
<< "couldn't get certdb";
nsTArray<RefPtr<nsIX509Cert>> certList;
rv = certdb->GetCerts(certList);
ASSERT_TRUE(NS_SUCCEEDED(rv))
<< "couldn't get list of certificates";
bool foundBuiltIn = false;
for (const auto& cert : certList) {
ASSERT_TRUE(cert)
<< "certlist shouldn't have null certificate";
ASSERT_TRUE(NS_SUCCEEDED(cert->GetIsBuiltInRoot(&foundBuiltIn)))
<< "GetIsBuiltInRoot failed";
if (foundBuiltIn) {
break;
}
}
ASSERT_TRUE(foundBuiltIn)
<< "didn't load any built-in certificates";
printf("successfully loaded at least one built-in certificate\n");
} // this scopes the nsCOMPtrs
}
|