2

I am testing the Orion Context Broker, using orion-psb-R3.4.

I’ve read http://forge.fi-ware.org/plugins/mediawiki/wiki/fiware/index.php/Publish/Subscribe_Broker_-_Orion_Context_Broker_-_Installation_and_Administration_Guide#Optional_packages

Where can we find the contextBroker-test package? I want to use the accumulator-server.py

Pieter
  • 33
  • 2

1 Answers1

0

accumulator-server.py is part of the contextBroker-tests package, that you can install doing the following:

  1. Add FIWARE yum repository to your system (see this link)
  2. Install using the following command:

    yum install contextBroker-tests
    

Once installed, the accumualtor-server.py is exactlty in the following path:

/usr/share/contextBroker/tests/accumulator-server.py

It is recommented to create a symlink from /usr/local/bin to that file to have it at hand.

Community
  • 1
  • 1
fgalan
  • 11,732
  • 9
  • 46
  • 89
  • 1
    It is probably a good idea to match the contextBroker-tests package with the same version as the contextBroker (contextBroker --version). In my case I have used: yum install contextBroker-tests-0.14.0* Creating the symlink is explained on [the wiki](http://forge.fi-ware.org/plugins/mediawiki/wiki/fiware/index.php/Publish/Subscribe_Broker_-_Orion_Context_Broker_-_Unit_Testing_Plan) – Pieter Oct 13 '14 at 14:53