You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by co...@apache.org on 2017/07/24 11:50:51 UTC

[10/18] directory-kerby git commit: Revert "DIRKRB-576 - Add test for client-server based on Kerby GssApi. Thanks to Wei Zhou"

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 <co...@apache.org>
Authored: Mon Jul 24 12:45:53 2017 +0100
Committer: Colm O hEigeartaigh <co...@apache.org>
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 @@
       <version>${project.version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.kerby</groupId>
-      <artifactId>kerb-gssapi</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
       <version>${slf4j.version}</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();
-    }
-}