Exemple #1
0
 def test_example(self):
     '''Test provisioning example code'''
     from examples import provisioning
     c = config.copy()
     c['clonecik'] = self.cik
     c['portalcik'] = self.portalcik
     r = provisioning.provision_example(c)
     self.assertTrue(r, "provisioning example runs without error")
Exemple #2
0
    def test_example(self):
        """Test provisioning example code"""
        from examples import provisioning

        c = config.copy()
        c["clonecik"] = self.cik
        c["portalcik"] = self.portalcik
        r = provisioning.provision_example(c)
        self.assertTrue(r, "provisioning example runs without error")
Exemple #3
0
 def test_provision_example(self):
     """Test provisioning example code"""
     from examples import provisioning
     clonecik, clonerid = self.makeClient(self.cik)
     r = provisioning.provision_example(
         vendorname=self.vendorname,
         vendortoken=self.vendortoken,
         clonerid=clonerid,
         portalcik=self.cik,
         portalrid=self.rid
     )
     self.assertTrue(r, "provisioning example runs without error")
Exemple #4
0
    def test_example(self):
        """Test provisioning example code"""
        from examples import provisioning

        r = provisioning.provision_example(
            {
                # Vendor token and name are listed at the top of
                # https://<your domain>.exosite.com/admin/managemodels
                # (Vendor token is also available on the domain admin home page)
                "vendorname": self.vendorname,
                "vendortoken": self.vendortoken,
                # CIK of client to clone for model
                "clonecik": self.cik,
                # CIK of parent of clonecik client. In the case of Portals,
                # this is the CIK of the portal. It can be found in your portal under
                # Account > Portals
                # Look for: Key: 123abc...
                "portalcik": self.portalcik,
            }
        )
        self.assertTrue(r, "provisioning example runs without error")