Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

# Authors: 

#   Rob Crittenden <rcritten@redhat.com> 

# 

# Copyright (C) 2009  Red Hat 

# see file 'COPYING' for use and warranty information 

# 

# This program is free software; you can redistribute it and/or modify 

# it under the terms of the GNU General Public License as published by 

# the Free Software Foundation, either version 3 of the License, or 

# (at your option) any later version. 

# 

# This program 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 General Public License for more details. 

# 

# You should have received a copy of the GNU General Public License 

# along with this program.  If not, see <http://www.gnu.org/licenses/>. 

""" 

Test the `pkcs10.py` module. 

""" 

 

import os 

import sys 

import nose 

from tests.util import raises, PluginTester 

from ipalib import pkcs10 

from ipapython import ipautil 

import nss.nss as nss 

from nss.error import NSPRError 

 

class test_update(object): 

    """ 

    Test the PKCS#10 Parser. 

    """ 

 

    def setUp(self): 

        nss.nss_init_nodb() 

        if ipautil.file_exists("test0.csr"): 

            self.testdir="./" 

        elif ipautil.file_exists("tests/test_pkcs10/test0.csr"): 

            self.testdir= "./tests/test_pkcs10/" 

        else: 

            raise nose.SkipTest("Unable to find test update files") 

 

    def read_file(self, filename): 

        fp = open(self.testdir + filename, "r") 

        data = fp.read() 

        fp.close() 

        return data 

 

    def test_0(self): 

        """ 

        Test simple CSR with no attributes 

        """ 

        csr = self.read_file("test0.csr") 

        request = pkcs10.load_certificate_request(csr) 

 

        subject = pkcs10.get_subject(request) 

 

        assert(subject.common_name == 'test.example.com') 

        assert(subject.state_name == 'California') 

        assert(subject.country_name == 'US') 

 

    def test_1(self): 

        """ 

        Test CSR with subject alt name 

        """ 

        csr = self.read_file("test1.csr") 

        request = pkcs10.load_certificate_request(csr) 

 

        subject = pkcs10.get_subject(request) 

 

        assert(subject.common_name == 'test.example.com') 

        assert(subject.state_name == 'California') 

        assert(subject.country_name == 'US') 

 

        for extension in request.extensions: 

            if extension.oid_tag == nss.SEC_OID_X509_SUBJECT_ALT_NAME: 

                assert nss.x509_alt_name(extension.value)[0] == 'testlow.example.com' 

 

    def test_2(self): 

        """ 

        Test CSR with subject alt name and a list of CRL distribution points 

        """ 

        csr = self.read_file("test2.csr") 

        request = pkcs10.load_certificate_request(csr) 

 

        subject = pkcs10.get_subject(request) 

 

        assert(subject.common_name == 'test.example.com') 

        assert(subject.state_name == 'California') 

        assert(subject.country_name == 'US') 

 

        for extension in request.extensions: 

            if extension.oid_tag == nss.SEC_OID_X509_SUBJECT_ALT_NAME: 

                assert nss.x509_alt_name(extension.value)[0] == 'testlow.example.com' 

            if extension.oid_tag == nss.SEC_OID_X509_CRL_DIST_POINTS: 

                pts = nss.CRLDistributionPts(extension.value) 

                urls = pts[0].get_general_names() 

                assert('http://ca.example.com/my.crl' in urls) 

                assert('http://other.example.com/my.crl' in urls) 

 

    def test_3(self): 

        """ 

        Test CSR with base64-encoded bogus data 

        """ 

        csr = self.read_file("test3.csr") 

 

        try: 

            request = pkcs10.load_certificate_request(csr) 

        except NSPRError, nsprerr: 

            # (SEC_ERROR_BAD_DER) security library: improperly formatted DER-encoded message. 

            assert(nsprerr. errno== -8183) 

 

    def test_4(self): 

        """ 

        Test CSR with badly formatted base64-encoded data 

        """ 

        csr = self.read_file("test4.csr") 

        try: 

            request = pkcs10.load_certificate_request(csr) 

        except TypeError, typeerr: 

            assert(str(typeerr) == 'Incorrect padding')