ci_reporter user guide?

M

Maung Aung

Hi,
I am new to ruby. I've googled for ci_reporter user guide, but i found
little helpful results. Could anyone have a clue where i can get support
for reporter? My real question is how to get xml output ruby. Earlier,
someone on the forum point me out that ci_reporter has this
functionality. ci_reporter has method called to_xml, but I don't really
know how to use it. Any help would be greatly appreciated.

Thanks,
maung
 
M

Maung Aung

Hi Nick,

Thanks for your response. I am very new to ruby, so please bear with me.
I am using Ruby, Watir and Test/unit, not Ruby on rails.
My first question will be if i can use ci_reporter with the tools i
mentioned above. I found out that I need to use ci_reporter with Rake.

What I am trying to achieve is that test login a website and check if
successful. I used test/unit assert to validate the result. I need to
get the output from running ruby as XML file so that I can use in
cruisecontrol application. But I don't know how to use to_xml method in
my rake file or ruby.


This is another question. Since I use test/unit, I put the following
line in my rake file:
require 'rubygems'
gem 'ci_reporter'
require 'ci/reporter/rake/test_unit' # use this if you're using
Test::Unit
according to the documentation. When try to run it, I got this error
message:
c:/ruby/lib/ruby/gems/1.8/gems/ci_reporter-1.3.3/lib/ci/reporter/rake/test_unit.rb:5:
undefined method `namespace' for main:Object (NoMethodError)
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`gem_original_require'
from c:/ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in
`require'
from Rakefile.rb:3
I don't really know what is causing it.

Any help would be very appreciated.

Thanks,
maung
 
M

Matt Berney

I have the exact same issue...

1) Ruby 1.8.2-15, Watir-1.5.1192, ci_reporter 1.3.3
2) My tests are based on Watir::TestCase
3) I am able to run a simple test and generate XML output

How does one generate a stylesheet to display an HTML report?

<file: tc1.rb>
require 'watir'
require 'watir/testcase'
require 'ci/reporter/rake/test_unit_loader'
require 'test/unit/ui/console/testrunner'

class TC_MyTests < Watir::TestCase
def test_mytest1
assert(true, "Test passed")
end

def test_mytest2
assert(false, "Test failed")
end
end

<file TEST-TC-MyTests.xml>
<?xml version="1.0" encoding="UTF-8"?>
<testsuite assertions="2" time="0.016" tests="2" failures="1"
name="TC_MyTests"
errors="0">
<testcase assertions="1" time="0.0" name="test_mytest1">
</testcase>
<testcase assertions="0" time="0.016" name="test_mytest2">
<failure message="Test failed...."
type="Test::Unit::AssertionFailedError">
Test failed.
&lt;false&gt; is not true. (Test::Unit::AssertionFailedError)
tc1.rb:12:in `test_mytest2' </failure>
</testcase>
<system-out>
<![CDATA[]]>
</system-out>
<system-err>
<![CDATA[]]>
</system-err>
</testsuite>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,768
Messages
2,569,574
Members
45,051
Latest member
CarleyMcCr

Latest Threads

Top