THIS SPACE IS UNDER CONSTRUCTION

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

Feature

User story

As a user
I want to send a message
So that I am able to send data to another user

Use caseUC-403: Send message
Expected resultCheck the response of the webservice call.
Actual resultCheck the front-end of the application under test.
Test pass conditions

The following values need to be verified:

  • Document title
  • Document filename
  • Patient INSS
  • Is important
  • Is encrypted
  • Document content

The following values need to be verified for every attachment:

  • Annex title
  • Annex filename
  • Annex content

The following values need to be verified for every recipient:

  • Destination first name
  • Destination last name
  • Destination quality

Scenarios (Cucumber)

sendMessage.feature
#Remove the @ignore-tag(s) of scenarios you want to start testing.

@ignore
Feature: TS-403: Send message
  As a user
  I want to send a message
  So that I am able to send data to another user

  @ignore
  Scenario: Send a message
    Given user is logged in
    When user is on the send message page
    And user sends a basic message
    Then message is sent correctly

  @ignore
  Scenario: Send an encrypted message
    Given user is logged in
    When user is on the send message page
    And user sends an encrypted message
    Then message is sent correctly

  @ignore
  Scenario: Send a message with an attachment
    Given user is logged in
    When user is on the send message page
    And user sends a message with an attachment
    Then message is sent correctly

  @ignore
  Scenario: Send an encrypted message with an attachment
    Given user is logged in
    When user is on the send message page
    And user sends an encrypted message with an attachment
    Then message is sent correctly
  • No labels