91 lines
4.3 KiB
C#
91 lines
4.3 KiB
C#
/*
|
|
This file is part of the TSpdf (R) project.
|
|
Copyright (c) 1987-2023 TSpdf
|
|
Authors: TSpdf Software.
|
|
|
|
This program is offered under a commercial and under the AGPL license.
|
|
For commercial licensing, contact us at https://TSpdfpdf.com/sales. For AGPL licensing, see below.
|
|
|
|
AGPL licensing:
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero 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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using TSpdf.Bouncycastleconnector;
|
|
using TSpdf.Commons.Bouncycastle;
|
|
using TSpdf.Commons.Utils;
|
|
using TSpdf.Kernel.Exceptions;
|
|
using TSpdf.Test;
|
|
|
|
namespace TSpdf.Signatures {
|
|
[NUnit.Framework.Category("BouncyCastleUnitTest")]
|
|
public class CertificateInfoTest : ExtendedTSpdfTest {
|
|
private static readonly IBouncyCastleFactory FACTORY = BouncyCastleFactoryCreator.GetFactory();
|
|
|
|
private static readonly String EXPECTED_EXCEPTION_MESSAGE = FACTORY.GetBouncyCastleFactoryTestUtil().GetCertificateInfoTestConst
|
|
();
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void X500InvalidDirectoryConstructorTest() {
|
|
NUnit.Framework.Assert.Catch(typeof(ArgumentException), () => new CertificateInfo.X500Name("some_dir"));
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void X500ValidDirectoryConstructorTest() {
|
|
CertificateInfo.X500Name name = new CertificateInfo.X500Name("some=dir,another=dir,some=value");
|
|
IDictionary<String, IList<String>> values = name.GetFields();
|
|
NUnit.Framework.Assert.AreEqual(2, values.Count);
|
|
NUnit.Framework.Assert.AreEqual(JavaUtil.ArraysAsList("dir", "value"), values.Get("SOME"));
|
|
NUnit.Framework.Assert.AreEqual(JavaCollectionsUtil.SingletonList("dir"), values.Get("ANOTHER"));
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void X500GetFieldTest() {
|
|
CertificateInfo.X500Name name = new CertificateInfo.X500Name("some=value,another=dir,some=dir");
|
|
NUnit.Framework.Assert.AreEqual("value", name.GetField("SOME"));
|
|
NUnit.Framework.Assert.AreEqual("dir", name.GetField("ANOTHER"));
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void X500GetFieldArrayTest() {
|
|
CertificateInfo.X500Name name = new CertificateInfo.X500Name("some=value,another=dir,some=dir");
|
|
NUnit.Framework.Assert.AreEqual(JavaUtil.ArraysAsList("value", "dir"), name.GetFieldArray("SOME"));
|
|
NUnit.Framework.Assert.AreEqual(JavaCollectionsUtil.SingletonList("dir"), name.GetFieldArray("ANOTHER"));
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void X509NameTokenizerNextTokenComplicatedTest() {
|
|
CertificateInfo.X509NameTokenizer tokenizer = new CertificateInfo.X509NameTokenizer("quoted\",\"comma=escaped\\,comma_escaped\\\"quote"
|
|
);
|
|
String token = tokenizer.NextToken();
|
|
NUnit.Framework.Assert.AreEqual("quoted,comma=escaped,comma_escaped\"quote", token);
|
|
NUnit.Framework.Assert.IsNull(tokenizer.NextToken());
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void GetIssuerFieldsExceptionTest() {
|
|
Exception exception = NUnit.Framework.Assert.Catch(typeof(PdfException), () => CertificateInfo.GetIssuer(new
|
|
byte[] { 4, 8, 15, 16, 23, 42 }));
|
|
NUnit.Framework.Assert.AreEqual(EXPECTED_EXCEPTION_MESSAGE, exception.InnerException.Message);
|
|
}
|
|
|
|
[NUnit.Framework.Test]
|
|
public virtual void GetSubjectExceptionTest() {
|
|
Exception exception = NUnit.Framework.Assert.Catch(typeof(PdfException), () => CertificateInfo.GetSubject(
|
|
new byte[] { 4, 8, 15, 16, 23, 42 }));
|
|
NUnit.Framework.Assert.AreEqual(EXPECTED_EXCEPTION_MESSAGE, exception.InnerException.Message);
|
|
}
|
|
}
|
|
}
|