Skip to main content

Email clients for grader and other services of fless.pro

Project description

Email client

This repo consist email client for grader and other services and packages.

Installing and run

You need python3.7, pytest5.0.1 and make4.1.

We use makefile for run and environment variables for configuration.

You can find smtp-client and imap-client. If you want, you can customize parsing email into smtp-client, you can implement custom strategy and use them. For default, we use strategy for grader.

To clean email (all emails are deleted):

ENV_FILE=./.envs/my_envfile.env CLEAN=YES make clean

Testing

If we integration-test, we have some stages:

  • Data generation
  • Create objects
  • Testing
  • Validation
  • Clean

If we unit-test, we have some stages:

  • Create objects
  • Testing
  • Validation

In this way unit-test is partial case of integration test. We use unit-test for testing logic in context one object, function (method). For example, we have function:

def plus(a, b):
    return a + b

This is unit-test. We want to test simple object. This situation is not always possible. If we want communication some systems and modules, we deal with integration tests. For example, we test connect to data base and collect data from there. This is integration-tests.

All tests lay down into folder:

tests/

If you want to run tests, you can do this (all emails are deleted):

ENV_FILE=.envs/my_envfile.env make test

Example test.env:

EMAIL_TIMEOUT_TEST=1.5  # Timeout for waiting between reading and writing of emails

IMAP_HOST=imap.mail.ru
IMAP_PORT=993
SMTP_HOST=smtp.mail.ru
SMTP_PORT=587

EMAIL_LOGIN=my@email.ru
EMAIL_PASSWORD=my_password

Emails (integration)

We have some clients for email:

  • SMTP-client sends emails
  • IMAP-client receives emails

For emails client we have not best way. We test SMTP-client over IMAP-client and IMAP-client over SMTP-client.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

email_client-1.1.0-py3-none-any.whl (11.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page