Exemple #1
0
 def connect(self,
             host=None,
             port=None,
             user=None,
             password=None,
             tune_params=None):
     """Create a new connction, return the Client object"""
     host = host or self.config.broker.host
     port = port or self.config.broker.port or 5672
     user = user or "guest"
     password = password or "guest"
     client = qpid.client.Client(host, port)
     try:
         if client.spec.major == 8 and client.spec.minor == 0:
             client.start({
                 "LOGIN": user,
                 "PASSWORD": password
             },
                          tune_params=tune_params)
         else:
             client.start("\x00" + user + "\x00" + password,
                          mechanism="PLAIN",
                          tune_params=tune_params)
     except qpid.client.Closed, e:
         if isinstance(e.args[0], VersionError):
             raise Skipped(e.args[0])
         else:
             raise e
 def connect(self,
             host=None,
             port=None,
             user=None,
             password=None,
             tune_params=None,
             client_properties=None,
             channel_options=None):
     """Create a new connction, return the Client object"""
     host = host or self.config.broker.host
     port = port or self.config.broker.port or 5672
     user = user or self.config.broker.user or "guest"
     password = password or self.config.broker.password or "guest"
     client = qpid.client.Client(host, port)
     try:
         client.start(username=user,
                      password=password,
                      tune_params=tune_params,
                      client_properties=client_properties,
                      channel_options=channel_options)
     except qpid.client.Closed, e:
         if isinstance(e.args[0], VersionError):
             raise Skipped(e.args[0])
         else:
             raise e
Exemple #3
0
 def connect(self, host=None, port=None, user=None, password=None, tune_params=None, client_properties=None, channel_options=None):
     """Create a new connction, return the Client object"""
     host = host or self.config.broker.host
     port = port or self.config.broker.port or 5672
     user = user or self.config.broker.user or "guest"
     password = password or self.config.broker.password or "guest"
     client = qpid.client.Client(host, port)
     try:
       client.start(username = user, password=password, tune_params=tune_params, client_properties=client_properties, channel_options=channel_options)
     except qpid.client.Closed, e:
         if isinstance(e.args[0], VersionError):
             raise Skipped(e.args[0])
         else:
             raise e
Exemple #4
0
 def connect(self, host=None, port=None, user=None, password=None, tune_params=None):
     """Create a new connction, return the Client object"""
     host = host or self.config.broker.host
     port = port or self.config.broker.port or 5672
     user = user or "guest"
     password = password or "guest"
     client = qpid.client.Client(host, port)
     try:
         if client.spec.major == 8 and client.spec.minor == 0:
             client.start({"LOGIN": user, "PASSWORD": password}, tune_params=tune_params)
         else:
             client.start("\x00" + user + "\x00" + password, mechanism="PLAIN", tune_params=tune_params)
     except qpid.client.Closed, e:
         if isinstance(e.args[0], VersionError):
             raise Skipped(e.args[0])
         else:
             raise e