How to use dispatch_to_backend method in localstack

Best Python code snippet using localstack_python

forwarder.py

Source:forwarder.py Github

copy

Full Screen

...67 context: RequestContext, forward_url_getter: Callable[[], str]68) -> ServiceResponse:69 def _call_http_backend(context: RequestContext) -> Response:70 return forward(context.request, forward_url_getter())71 return dispatch_to_backend(context, _call_http_backend)72def dispatch_to_backend(73 context: RequestContext,74 http_request_dispatcher: Callable[[RequestContext], Response],75 include_response_metadata=False,76) -> ServiceResponse:77 """78 Dispatch the given request to a backend by using the `request_forwarder` function to79 fetch an HTTP response, converting it to a ServiceResponse.80 :param context: the request context81 :param http_request_dispatcher: dispatcher that performs the request and returns an HTTP response82 :param include_response_metadata: whether to include boto3 response metadata in the response83 :return: parsed service response84 :raises ServiceException: if the dispatcher returned an error response85 """86 http_response = http_request_dispatcher(context)...

Full Screen

Full Screen

models.py

Source:models.py Github

copy

Full Screen

...17 active = models.BooleanField(default=True)18 def __unicode__(self):19 return u'%s (%s)' % (self.name, self.email)20 def send(self, recipient_list, blast):21 utils.dispatch_to_backend(22 'TT_DAILYEMAILBLAST_RECIPIENT',23 'tt_dailyemailblast.send_backends.sync.sync_recipient',24 self, recipient_list, blast)25class RecipientList(NamedSlugMixin, models.Model):26 name = models.CharField(max_length=255)27 recipients = models.ManyToManyField(Recipient, related_name='lists',28 editable=False)29 def __unicode__(self):30 return u'%s (%s)' % (self.name, self.recipients.count())31 def send(self, blast):32 utils.dispatch_to_backend(33 'TT_DAILYEMAILBLAST_RECIPIENTLIST',34 'tt_dailyemailblast.send_backends.sync.sync_recipients_list',35 self, blast)36class DailyEmailBlastType(NamedSlugMixin, models.Model):37 name = models.CharField(max_length=255)38 footer = models.TextField(blank=True, null=True)39 def __unicode__(self):40 return self.name41class DailyEmailBlast(models.Model):42 blast_type = models.ForeignKey(DailyEmailBlastType, related_name='blasts')43 created_on = models.DateTimeField(auto_now_add=True)44 subject = models.CharField(max_length=255)45 body = models.TextField()46 recipient_lists = models.ManyToManyField(RecipientList,47 related_name='blasts', editable=False)48 sent_on = models.DateTimeField(null=True)49 send_completed_on = models.DateTimeField(null=True)50 class Meta:51 ordering = ('-created_on',)52 def __unicode__(self):53 return u'%s (%s)' % (self.blast_type, self.created_on)54 def send(self):55 utils.dispatch_to_backend(56 'TT_DAILYEMAILBLAST_BLASTBACKEND',57 'tt_dailyemailblast.send_backends.sync.sync_daily_email_blasts',58 self)59 def render(self, recipient, recipient_list):60 templates = utils.get_template_names(self, recipient_list, recipient)61 template = select_template(templates)62 context_data = self.get_context_data(recipient, recipient_list)63 context = Context(context_data)64 return template.render(context)65 def get_context_data(self, recipient, recipient_list):66 context_backend = GenericBackend('TT_DAILYEMAILBLAST_CONTEXT',67 defaults=['tt_dailyemailblast.context_backends.basic'])...

Full Screen

Full Screen

utils.py

Source:utils.py Github

copy

Full Screen

...6 'tt_dailyemailblast/%s/%s.html' % (blast.blast_type.slug,7 recipient_list.slug),8 'tt_dailyemailblast/%s.html' % blast.blast_type.slug,9 ]10def dispatch_to_backend(backend, default, *args):11 """Configure a GenericBackend and call it with `*args`.12 :param backend: Django setting name for the backend.13 :param default: Module path to the default backend.14 """...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful