forked from petdance/webservice-solr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest-add.t
43 lines (35 loc) · 1.1 KB
/
request-add.t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use strict;
use warnings;
use Test::More tests => 11;
use Test::Mock::LWP;
use XML::Simple;
use HTTP::Headers;
use WebService::Solr;
$Mock_ua->mock(
request => sub {
_test_req( @{ $_[ 1 ]->new_args } );
return HTTP::Response->new;
}
);
$Mock_response->mock( is_error => sub { return 0 } );
my $solr = WebService::Solr->new( undef, { autocommit => 0 } );
isa_ok( $solr, 'WebService::Solr' );
my $expect;
{
is $solr->last_response, undef, "The last_response attribute hasn't been set yet";
$expect = { doc => { field => { name => 'foo', content => 'bar' } } };
$solr->add( { foo => 'bar' } );
isa_ok $solr->last_response, 'WebService::Solr::Response';
$solr->update( { foo => 'bar' } );
}
sub _test_req {
is( $_[ 2 ]->path, '/solr/update', 'add() path' );
is_deeply( { $_[ 2 ]->query_form }, { wt => 'json' }, 'add() params' );
is_deeply(
$_[ 3 ]->header( 'Content_Type' ),
'text/xml; charset=utf-8',
'add() headers'
);
my $struct = XMLin( $_[ 4 ], KeepRoot => 1 );
is_deeply( $struct, { add => $expect }, 'add/update xml' );
}