/solr/solrj/src/test/org/apache/solr/client/solrj/impl/ConcurrentUpdateSolrClientBuilderTest.java

http://github.com/apache/lucene-solr · Java · 71 lines · 37 code · 7 blank · 27 comment · 1 complexity · c0dcf0ee3040a88b485ed0759ca6e7a9 MD5 · raw file

  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. package org.apache.solr.client.solrj.impl;
  18. import java.io.IOException;
  19. import java.net.InetAddress;
  20. import java.net.ServerSocket;
  21. import java.net.SocketTimeoutException;
  22. import org.apache.solr.SolrTestCase;
  23. import org.apache.solr.client.solrj.SolrServerException;
  24. import org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrClient.Builder;
  25. import org.junit.Test;
  26. /**
  27. * Unit tests for {@link Builder}.
  28. */
  29. public class ConcurrentUpdateSolrClientBuilderTest extends SolrTestCase {
  30. @Test(expected = IllegalArgumentException.class)
  31. public void testRejectsMissingBaseSolrUrl() {
  32. new Builder(null).build();
  33. }
  34. @Test
  35. // commented out on: 24-Dec-2018 @BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028") // added 20-Sep-2018
  36. public void testMissingQueueSize() {
  37. try (ConcurrentUpdateSolrClient client = new Builder("someurl").build()){
  38. // Do nothing as we just need to test that the only mandatory parameter for building the client
  39. // is the baseSolrUrl
  40. }
  41. }
  42. /**
  43. * Test that connection timeout information is passed to the HttpSolrClient that handles non add operations.
  44. */
  45. @Test(timeout = 10000)
  46. public void testSocketTimeoutOnCommit() throws IOException, SolrServerException {
  47. InetAddress localHost = InetAddress.getLocalHost();
  48. try (ServerSocket server = new ServerSocket(0, 1, localHost);
  49. ConcurrentUpdateSolrClient client = new ConcurrentUpdateSolrClient.Builder(
  50. "http://" + localHost.getHostAddress() + ":" + server.getLocalPort() + "/noOneThere")
  51. .withSocketTimeout(1)
  52. .build()){
  53. // Expecting an exception
  54. client.commit();
  55. fail();
  56. }
  57. catch (SolrServerException e) {
  58. if (!(e.getCause() instanceof SocketTimeoutException)) {
  59. throw e;
  60. }
  61. // else test passses
  62. }
  63. }
  64. }