blob: 30a5f83b880257e106a806824e00cdecdf72a823 [file] [log] [blame]
/*
* 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.solr.handler.component;
import java.util.ArrayList;
import java.util.List;
import org.apache.solr.common.params.ShardParams;
import org.apache.solr.common.params.SolrParams;
import org.apache.solr.common.util.NamedList;
import org.apache.solr.request.SolrQueryRequest;
import org.apache.solr.response.SolrQueryResponse;
import org.apache.solr.schema.IndexSchema;
import org.apache.solr.schema.SchemaField;
import org.apache.solr.schema.StrField;
import org.apache.solr.search.SortSpec;
import org.mockito.Mockito;
public class MockResponseBuilder extends ResponseBuilder {
private MockResponseBuilder(SolrQueryRequest request, SolrQueryResponse response, List<SearchComponent> components) {
super(request, response, components);
}
public static MockResponseBuilder create() {
// the mocks
SolrQueryRequest request = Mockito.mock(SolrQueryRequest.class);
SolrQueryResponse response = Mockito.mock(SolrQueryResponse.class);
IndexSchema indexSchema = Mockito.mock(IndexSchema.class);
SolrParams params = Mockito.mock(SolrParams.class);
// SchemaField must be concrete due to field access
SchemaField uniqueIdField = new SchemaField("id", new StrField());
// we need this because QueryComponent adds a property to it.
NamedList<Object> responseHeader = new NamedList<>();
// the mock implementations
Mockito.when(request.getSchema()).thenReturn(indexSchema);
Mockito.when(indexSchema.getUniqueKeyField()).thenReturn(uniqueIdField);
Mockito.when(params.getBool(ShardParams.SHARDS_INFO)).thenReturn(false);
Mockito.when(request.getParams()).thenReturn(params);
Mockito.when(response.getResponseHeader()).thenReturn(responseHeader);
List<SearchComponent> components = new ArrayList<>();
return new MockResponseBuilder(request, response, components);
}
public MockResponseBuilder withSortSpec(SortSpec sortSpec) {
this.setSortSpec(sortSpec);
return this;
}
}