| 1 | use strict; |
|---|
| 2 | use Wiki::Toolkit::Setup::SQLite; |
|---|
| 3 | use OpenGuides::Config; |
|---|
| 4 | use OpenGuides; |
|---|
| 5 | use OpenGuides::RDF; |
|---|
| 6 | use OpenGuides::Utils; |
|---|
| 7 | use Test::More; |
|---|
| 8 | |
|---|
| 9 | eval { require DBD::SQLite; }; |
|---|
| 10 | if ( $@ ) { |
|---|
| 11 | plan skip_all => "DBD::SQLite not installed"; |
|---|
| 12 | exit 0; |
|---|
| 13 | } |
|---|
| 14 | |
|---|
| 15 | eval { require Wiki::Toolkit::Search::Plucene; }; |
|---|
| 16 | if ( $@ ) { |
|---|
| 17 | plan skip_all => "Plucene not installed"; |
|---|
| 18 | exit 0; |
|---|
| 19 | } |
|---|
| 20 | |
|---|
| 21 | plan tests => 7; |
|---|
| 22 | |
|---|
| 23 | # Clear out the database from any previous runs. |
|---|
| 24 | unlink "t/node.db"; |
|---|
| 25 | unlink <t/indexes/*>; |
|---|
| 26 | |
|---|
| 27 | Wiki::Toolkit::Setup::SQLite::setup( { dbname => "t/node.db" } ); |
|---|
| 28 | my $config = OpenGuides::Config->new( |
|---|
| 29 | vars => { |
|---|
| 30 | dbtype => "sqlite", |
|---|
| 31 | dbname => "t/node.db", |
|---|
| 32 | indexing_directory => "t/indexes", |
|---|
| 33 | script_name => "wiki.cgi", |
|---|
| 34 | script_url => "http://example.com/", |
|---|
| 35 | site_name => "Test Site", |
|---|
| 36 | template_path => "./templates", |
|---|
| 37 | home_name => "Home", |
|---|
| 38 | use_plucene => 1 |
|---|
| 39 | } |
|---|
| 40 | ); |
|---|
| 41 | |
|---|
| 42 | # Basic sanity check first. |
|---|
| 43 | my $wiki = OpenGuides::Utils->make_wiki_object( config => $config ); |
|---|
| 44 | |
|---|
| 45 | my $feed = OpenGuides::Feed->new( wiki => $wiki, |
|---|
| 46 | config => $config ); |
|---|
| 47 | |
|---|
| 48 | my $rss = eval { $feed->make_feed(feed_type => 'rss'); }; |
|---|
| 49 | is( $@, "", "->make_feed for rss doesn't croak" ); |
|---|
| 50 | |
|---|
| 51 | # Now write some data, first a minor edit then a non-minor one. |
|---|
| 52 | my $guide = OpenGuides->new( config => $config ); |
|---|
| 53 | |
|---|
| 54 | # Set up CGI parameters ready for a node write. |
|---|
| 55 | # Most of these are in here to avoid uninitialised value warnings. |
|---|
| 56 | my $q = CGI->new; |
|---|
| 57 | $q->param( -name => "content", -value => "foo" ); |
|---|
| 58 | $q->param( -name => "categories", -value => "" ); |
|---|
| 59 | $q->param( -name => "locales", -value => "" ); |
|---|
| 60 | $q->param( -name => "phone", -value => "" ); |
|---|
| 61 | $q->param( -name => "fax", -value => "" ); |
|---|
| 62 | $q->param( -name => "website", -value => "" ); |
|---|
| 63 | $q->param( -name => "hours_text", -value => "" ); |
|---|
| 64 | $q->param( -name => "address", -value => "" ); |
|---|
| 65 | $q->param( -name => "postcode", -value => "" ); |
|---|
| 66 | $q->param( -name => "map_link", -value => "" ); |
|---|
| 67 | $q->param( -name => "os_x", -value => "" ); |
|---|
| 68 | $q->param( -name => "os_y", -value => "" ); |
|---|
| 69 | $q->param( -name => "username", -value => "bob" ); |
|---|
| 70 | $q->param( -name => "comment", -value => "foo" ); |
|---|
| 71 | $q->param( -name => "edit_type", -value => "Minor tidying" ); |
|---|
| 72 | $ENV{REMOTE_ADDR} = "127.0.0.1"; |
|---|
| 73 | |
|---|
| 74 | my $output = $guide->commit_node( |
|---|
| 75 | return_output => 1, |
|---|
| 76 | id => "Wombats", |
|---|
| 77 | cgi_obj => $q, |
|---|
| 78 | ); |
|---|
| 79 | |
|---|
| 80 | $q->param( -name => "edit_type", -value => "Normal edit" ); |
|---|
| 81 | $output = $guide->commit_node( |
|---|
| 82 | return_output => 1, |
|---|
| 83 | id => "Badgers", |
|---|
| 84 | cgi_obj => $q, |
|---|
| 85 | ); |
|---|
| 86 | |
|---|
| 87 | $q->param( -name => "username", -value => "Kake" ); |
|---|
| 88 | $output = $guide->commit_node( |
|---|
| 89 | return_output => 1, |
|---|
| 90 | id => "Wombles", |
|---|
| 91 | cgi_obj => $q, |
|---|
| 92 | ); |
|---|
| 93 | |
|---|
| 94 | # Check that the writes went in. |
|---|
| 95 | ok( $wiki->node_exists( "Wombats" ), "Wombats written" ); |
|---|
| 96 | ok( $wiki->node_exists( "Badgers" ), "Badgers written" ); |
|---|
| 97 | ok( $wiki->node_exists( "Wombles" ), "Wombles written" ); |
|---|
| 98 | |
|---|
| 99 | # Check that the minor edits can be filtered out. |
|---|
| 100 | $output = $guide->display_feed( |
|---|
| 101 | feed_type => "rss", |
|---|
| 102 | items => 5, |
|---|
| 103 | username => "bob", |
|---|
| 104 | ignore_minor_edits => 1, |
|---|
| 105 | return_output => 1, |
|---|
| 106 | ); |
|---|
| 107 | unlike( $output, qr/Wombats/, "minor edits filtered out when required" ); |
|---|
| 108 | like( $output, qr/Badgers/, "but normal edits still in" ); |
|---|
| 109 | |
|---|
| 110 | # Check that the username parameter is taken notice of. |
|---|
| 111 | unlike( $output, qr/Wombles/, "username parameter taken note of" ); |
|---|