2
나를 위해 매우 흥미로운 것 같습니다 : 개발 모드에서 쿼리 작업이 쉽지만 테스트 할 때 오류가 발생합니다. 여기 왜 사고 스핑크스는 개발 단계에서 작동하지만 내 사양에서는 작동하지 않습니까?
def index
@search = Query::Products.new(params.merge({
kind_cd: Product.product,
contractor: current_contractor
}))
end
내 서비스 개체입니다 : 여기
describe 'GET #index' do
subject { get :index }
let!(:products) { Fabricate.times(10, :product) }
before(:all) do
ThinkingSphinx::Test.init
ThinkingSphinx::Test.index
# sleeping for some time
ThinkingSphinx::Test.start
end
after(:all) do
ThinkingSphinx::Test.stop
end
it { expect(subject).to render_template(:index) }
it { expect{subject}.to change{ assigns(:search).try(:products) }.to match_array(products) }
end
내 컨트롤러 : 여기
내 테스트입니다
class Query::Products
def initialize(params)
@params = params
process_products
process_categories # error in this method
process_properties
process_brands
process_prices
end
private
def process_products
# ... other code
@product_facets = Product.facets(query_string, common_search_options)
end
def common_search_options
{
order: ordering,
ranker: :bm25,
with: {
price_type_for_search => min_price_conditions..max_price_conditions,
kind_cd: @params[:kind_cd],
brand_id: [*@params[:brand_ids]],
category_ids: categories_for_search,
property_value_ids: [*@params[:property_value_ids]],
}
}
end
def query_string
@params[:query].present? ? Riddle.escape(@params[:query] + '*') : ''
end
def price_type_for_contractor
@price_type_for_contractor ||= PriceType.for(@params[:contractor])
end
def price_type_for_search
@price_type_for_search ||= "price_type_#{price_type_for_contractor.id}".to_sym
end
def min_price_conditions
@min_price_conditions ||= @params[:min_price_limit].try(:to_f) || Price.where(price_type: price_type_for_contractor).minimum(:value)
end
def max_price_conditions
@max_price_conditions ||= @params[:max_price_limit].try(:to_f) || Price.where(price_type: price_type_for_contractor).maximum(:value)
end
def ordering
(@params[:order_by] == 'new') ? :created_at : price_type_for_search
end
def categories_for_search
@params[:category_ids] || @params[:category_id] || []
end
def process_categories
category_ids = if @params[:available_category_ids]
Category.find(@params[:available_category_ids])
elsif @params[:category_id]
@category = Category.find(@params[:category_id])
@category.children.ids
else
@product_facets[:direct_category_id].keys # errors here, see @product_facets definition
end
@categories = Category.where(id: category_ids)
end
그리고 나는 오류를 얻을
Failure/Error: subject { get :index }
ThinkingSphinx::SyntaxError:
sphinxql: syntax error, unexpected AND, expecting CONST_INT or CONST_FLOAT or '-' near 'AND AND `kind_cd` = 0 AND `sphinx_deleted` = 0 GROUP BY `sphinx_internal_class` ORDER BY `price_type_3` ASC LIMIT 0, 1000 OPTION ranker=bm25, max_matches=1000; SHOW META; SELECT *, @groupby, @count FROM `product_core` WHERE `price_type_3` BETWEEN AND AND `kind_cd` = 0 AND `sphinx_deleted` = 0 GROUP BY `direct_category_id` ORDER BY `price_type_3` ASC LIMIT 0, 1000 OPTION ranker=bm25, max_matches=1000; SHOW META; SELEC
./app/services/query/products.rb:76:in `process_categories'
개발 모드에서 오류가 발생하지 않습니다. 왜 내가이 문제가 있니?
, 당신은 스핑크스 쿼리를 찾을 수있는 문제의 원인이되는? – pat
컨트롤러를 테스트하는 경우 실제로 외부 객체를 조롱해야합니다. 서비스 개체의 실제 응답보다는 조롱 된 응답을 제공하고 컨트롤러가 해당 고정 응답을 기반으로 올바르게 작동하는지 확인하십시오. 다른 것은 통합 테스트 일 것이고 컨트롤러 사양 내에서 테스트하기에 적합하지 않습니다. – Jon
@pat, 거대한 지연에 대해 사과드립니다. 로그를 어디에서 찾을 수 있습니까? – asiniy