From 920817b25737aada7aa6a59fe36ca0f8ba905d97 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Wed, 27 Jun 2018 14:19:51 +0200 Subject: [PATCH] Add PubSubDelegateTest --- .../smackx/ox/PubSubDelegateTest.java | 34 +++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 smack-openpgp/src/test/java/org/jivesoftware/smackx/ox/PubSubDelegateTest.java diff --git a/smack-openpgp/src/test/java/org/jivesoftware/smackx/ox/PubSubDelegateTest.java b/smack-openpgp/src/test/java/org/jivesoftware/smackx/ox/PubSubDelegateTest.java new file mode 100644 index 000000000..2a4fd13be --- /dev/null +++ b/smack-openpgp/src/test/java/org/jivesoftware/smackx/ox/PubSubDelegateTest.java @@ -0,0 +1,34 @@ +/** + * + * Copyright 2018 Paul Schaub. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +package org.jivesoftware.smackx.ox; + +import static junit.framework.TestCase.assertEquals; + +import org.jivesoftware.smack.test.util.SmackTestSuite; +import org.jivesoftware.smackx.ox.util.PubSubDelegate; + +import org.junit.Test; + +public class PubSubDelegateTest extends SmackTestSuite { + + @Test + public void pubkeyNodeNameTest() { + OpenPgpV4Fingerprint fingerprint = new OpenPgpV4Fingerprint("486f7065207520646f6e2068617665204f43640a"); + assertEquals("urn:xmpp:openpgp:0:public-keys:486F7065207520646F6E2068617665204F43640A", + PubSubDelegate.PEP_NODE_PUBLIC_KEY(fingerprint)); + } +}