Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 69028 invoked from network); 15 Nov 2007 08:02:37 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Nov 2007 08:02:37 -0000 Received: (qmail 64176 invoked by uid 500); 15 Nov 2007 08:02:25 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 64150 invoked by uid 500); 15 Nov 2007 08:02:25 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 64141 invoked by uid 99); 15 Nov 2007 08:02:25 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2007 00:02:25 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 15 Nov 2007 08:02:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9D7911A9832; Thu, 15 Nov 2007 00:02:16 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r595233 - /harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java Date: Thu, 15 Nov 2007 08:02:16 -0000 To: commits@harmony.apache.org From: hindessm@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071115080216.9D7911A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: hindessm Date: Thu Nov 15 00:02:14 2007 New Revision: 595233 URL: http://svn.apache.org/viewvc?rev=595233&view=rev Log: Fixing svn:eol-style property on new file committed in r595195 for "[#HARMONY-5121] [classlib][jndi][ldap] add binary attribute support". Modified: harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java (contents, props changed) Modified: harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java?rev=595233&r1=595232&r2=595233&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java (original) +++ harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java Thu Nov 15 00:02:14 2007 @@ -1,52 +1,52 @@ -/* - * 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.harmony.jndi.provider.ldap.asn1; - -import junit.framework.TestCase; - -import org.apache.harmony.jndi.provider.ldap.Filter; -import org.apache.harmony.jndi.provider.ldap.parser.FilterParser; - -public class ASN1LdapFilterTest extends TestCase { - public void test_encode() throws Exception { - FilterParser parser = new FilterParser("(&(cn=1)(o=2))"); - Filter filter = parser.parse(); - LdapASN1Constant.Filter.encode(filter); - ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); - - parser = new FilterParser("(object=1)"); - filter = parser.parse(); - LdapASN1Constant.Filter.encode(filter); - ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); - - parser = new FilterParser("(cn=*hello*)"); - filter = parser.parse(); - LdapASN1Constant.Filter.encode(filter); - ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); - - parser = new FilterParser("(sn=Lu\\c4\\8di\\c4\\87)"); - filter = parser.parse(); - LdapASN1Constant.Filter.encode(filter); - ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); - - parser = new FilterParser("(&(objectClass=Person)(|(sn=Jensen)(cn=Babs J*)))"); - filter = parser.parse(); - LdapASN1Constant.Filter.encode(filter); - ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); - } -} +/* + * 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.harmony.jndi.provider.ldap.asn1; + +import junit.framework.TestCase; + +import org.apache.harmony.jndi.provider.ldap.Filter; +import org.apache.harmony.jndi.provider.ldap.parser.FilterParser; + +public class ASN1LdapFilterTest extends TestCase { + public void test_encode() throws Exception { + FilterParser parser = new FilterParser("(&(cn=1)(o=2))"); + Filter filter = parser.parse(); + LdapASN1Constant.Filter.encode(filter); + ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); + + parser = new FilterParser("(object=1)"); + filter = parser.parse(); + LdapASN1Constant.Filter.encode(filter); + ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); + + parser = new FilterParser("(cn=*hello*)"); + filter = parser.parse(); + LdapASN1Constant.Filter.encode(filter); + ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); + + parser = new FilterParser("(sn=Lu\\c4\\8di\\c4\\87)"); + filter = parser.parse(); + LdapASN1Constant.Filter.encode(filter); + ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); + + parser = new FilterParser("(&(objectClass=Person)(|(sn=Jensen)(cn=Babs J*)))"); + filter = parser.parse(); + LdapASN1Constant.Filter.encode(filter); + ASN1TestUtils.checkEncode(filter, LdapASN1Constant.Filter); + } +} Propchange: harmony/enhanced/classlib/trunk/modules/jndi/src/test/java/org/apache/harmony/jndi/provider/ldap/asn1/ASN1LdapFilterTest.java ------------------------------------------------------------------------------ svn:eol-style = native