Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 46B3D200CDE for ; Mon, 24 Jul 2017 13:50:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 45022164F65; Mon, 24 Jul 2017 11:50:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8AE99164F43 for ; Mon, 24 Jul 2017 13:50:45 +0200 (CEST) Received: (qmail 21628 invoked by uid 500); 24 Jul 2017 11:50:44 -0000 Mailing-List: contact commits-help@directory.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@directory.apache.org Delivered-To: mailing list commits@directory.apache.org Received: (qmail 21160 invoked by uid 99); 24 Jul 2017 11:50:44 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2017 11:50:44 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 14CDCF32B2; Mon, 24 Jul 2017 11:50:43 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: coheigea@apache.org To: commits@directory.apache.org Date: Mon, 24 Jul 2017 11:50:51 -0000 Message-Id: <06bc9f5162c04adcb072119733f8d762@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [10/18] directory-kerby git commit: Revert "DIRKRB-576 - Add test for client-server based on Kerby GssApi. Thanks to Wei Zhou" archived-at: Mon, 24 Jul 2017 11:50:46 -0000 Revert "DIRKRB-576 - Add test for client-server based on Kerby GssApi. Thanks to Wei Zhou" This reverts commit 19f27565d45e9c3a07ed7fe61f20d1c382eae8ad. Project: http://git-wip-us.apache.org/repos/asf/directory-kerby/repo Commit: http://git-wip-us.apache.org/repos/asf/directory-kerby/commit/d4ab11f2 Tree: http://git-wip-us.apache.org/repos/asf/directory-kerby/tree/d4ab11f2 Diff: http://git-wip-us.apache.org/repos/asf/directory-kerby/diff/d4ab11f2 Branch: refs/heads/1.0.x-fixes Commit: d4ab11f26157f0f0c3f8ae4f56513f68e695bd8a Parents: d72f5a9 Author: Colm O hEigeartaigh Authored: Mon Jul 24 12:45:53 2017 +0100 Committer: Colm O hEigeartaigh Committed: Mon Jul 24 12:45:53 2017 +0100 ---------------------------------------------------------------------- kerby-kerb/integration-test/pom.xml | 5 --- .../kerb/integration/test/KerbyGssAppTest.java | 47 -------------------- 2 files changed, 52 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/d4ab11f2/kerby-kerb/integration-test/pom.xml ---------------------------------------------------------------------- diff --git a/kerby-kerb/integration-test/pom.xml b/kerby-kerb/integration-test/pom.xml index 6b17cb5..07b571a 100644 --- a/kerby-kerb/integration-test/pom.xml +++ b/kerby-kerb/integration-test/pom.xml @@ -45,11 +45,6 @@ ${project.version} - org.apache.kerby - kerb-gssapi - ${project.version} - - org.slf4j slf4j-simple ${slf4j.version} http://git-wip-us.apache.org/repos/asf/directory-kerby/blob/d4ab11f2/kerby-kerb/integration-test/src/test/java/org/apache/kerby/kerberos/kerb/integration/test/KerbyGssAppTest.java ---------------------------------------------------------------------- diff --git a/kerby-kerb/integration-test/src/test/java/org/apache/kerby/kerberos/kerb/integration/test/KerbyGssAppTest.java b/kerby-kerb/integration-test/src/test/java/org/apache/kerby/kerberos/kerb/integration/test/KerbyGssAppTest.java deleted file mode 100644 index ac9509b..0000000 --- a/kerby-kerb/integration-test/src/test/java/org/apache/kerby/kerberos/kerb/integration/test/KerbyGssAppTest.java +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you 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.apache.kerby.kerberos.kerb.integration.test; - -import org.junit.Before; -import org.junit.Test; - -import java.security.Provider; - -public class KerbyGssAppTest extends GssAppTest { - - @Before - @Override - public void setUp() throws Exception { - Provider provider = new org.apache.kerby.kerberos.kerb.gssapi.Provider(); - java.security.Security.insertProviderAt(provider, 1); - super.setUp(); - } - - @Test - public void test() throws Exception { - super.test(); - } - - @Test - @org.junit.Ignore - public void testJAAS() throws Exception { - super.testJAAS(); - } -}