Metadata-Version: 1.0
Name: p01.neo4jstub
Version: 0.5.0
Summary: Neo4j server stub setup
Home-page: http://pypi.python.org/pypi/p01.neo4jstub
Author: Roger Ineichen, Projekt01 GmbH
Author-email: dev@projekt01.ch
License: ZPL 2.1
Description: This package provides a neo4j server stub setup based on a real neo4j server.
        
        
        .. contents::
        
        ======
        README
        ======
        
        setup
        -----
        
        This test is using a neo4j server. The test setUp method used for this
        test is calling our startNeo4jServer method which is starting a neo4j
        server. The first time this test get called a new neo4j server will get
        downloaded. The test setup looks like::
        
          def test_suite():
              return unittest.TestSuite((
                  doctest.DocFileSuite('README.txt',
                      setUp=testing.doctestSetUp, tearDown=testing.doctestTearDown,
                      optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
                      encoding='utf-8'),
                  ))
        
        Your setup with a custom conf folder could look like::
        
          def mySetUp(test):
              # setup neo4j server
              here = os.path.dirname(__file__)
              sandbox = os.path.join(here, 'sandbox')
              confSource = os.path.join(here, 'conf')
              startNeo4jServer(sandbox, confSource=confSource)
          
          
          def myTearDown(test):
              # tear down neo4j server
              here = os.path.dirname(__file__)
              sandbox = os.path.join(here, 'sandbox')
              stopNeo4jServer(sandbox)
              # do some custom teardown stuff here
        
        Also see our test.py for a sample setup.
        
        
        windows
        -------
        
        On windows a service with the name p01_neo4jstub_testing get installed and
        removed during the test run. This is not nice but that's how neo4j can get
        stopped after starting. If soemthing fails and the service dosn't get removed,
        you can simply use the follwoingcommand for remove the service:
        
          sc delete p01_neo4jstub_testing
        
        
        testing
        -------
        
        Let's setup a python httplib connection:
        
          >>> import httplib
          >>> conn = httplib.HTTPConnection('localhost', 47474)
        
        and test the cluster state:
        
          >>> conn.request('GET', '/db/data')
          >>> response = conn.getresponse()
          >>> response.status
          302
        
        
        =======
        CHANGES
        =======
        
        0.5.0 (28-06-2013)
        ------------------
        
        - initial release
        
Keywords: Zope3 z3c p01 neo4j server stub setup
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Programming Language :: Python
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Framework :: Zope3
