🗊 Презентация Performance testing

Нажмите для полного просмотра!
Performance testing, слайд №1 Performance testing, слайд №2 Performance testing, слайд №3 Performance testing, слайд №4 Performance testing, слайд №5 Performance testing, слайд №6 Performance testing, слайд №7 Performance testing, слайд №8 Performance testing, слайд №9 Performance testing, слайд №10 Performance testing, слайд №11 Performance testing, слайд №12 Performance testing, слайд №13 Performance testing, слайд №14 Performance testing, слайд №15 Performance testing, слайд №16 Performance testing, слайд №17 Performance testing, слайд №18 Performance testing, слайд №19 Performance testing, слайд №20 Performance testing, слайд №21 Performance testing, слайд №22 Performance testing, слайд №23 Performance testing, слайд №24 Performance testing, слайд №25 Performance testing, слайд №26 Performance testing, слайд №27 Performance testing, слайд №28 Performance testing, слайд №29 Performance testing, слайд №30 Performance testing, слайд №31 Performance testing, слайд №32 Performance testing, слайд №33 Performance testing, слайд №34

Вы можете ознакомиться и скачать презентацию на тему Performance testing. Доклад-сообщение содержит 34 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


Performance testing
Описание слайда:
Performance testing

Слайд 2


Required technical knowledge
Описание слайда:
Required technical knowledge

Слайд 3


User workflow vs Application workflow User Clicks Selects Checks Types Uploads Downloads Navigates
Описание слайда:
User workflow vs Application workflow User Clicks Selects Checks Types Uploads Downloads Navigates

Слайд 4


Client-server application architecture
Описание слайда:
Client-server application architecture

Слайд 5


Request structure
Описание слайда:
Request structure

Слайд 6


Response structure
Описание слайда:
Response structure

Слайд 7


HTTP Protocol Methods Get – “show me the data that I want” Post – “take the data and process it” Put – “keep the data please” Delete – “delete the...
Описание слайда:
HTTP Protocol Methods Get – “show me the data that I want” Post – “take the data and process it” Put – “keep the data please” Delete – “delete the data please” +5 more

Слайд 8


HTTP Protocol Methods Get – “show me the data that I want” Post – “take the data and process it” Put – “keep the data please” Delete – “delete the...
Описание слайда:
HTTP Protocol Methods Get – “show me the data that I want” Post – “take the data and process it” Put – “keep the data please” Delete – “delete the data please” +5 more

Слайд 9


HTTP Protocol Examples where http methods are used properly: in public web services in projects where coding best practices are strictly followed...
Описание слайда:
HTTP Protocol Examples where http methods are used properly: in public web services in projects where coding best practices are strictly followed Examples where http methods can be messed up: in http server based web applications in projects where best practices aren’t strictly enforced “Bad” practices that you can face use POST for searches use POST to delete something never use DELETE, PUT etc.

Слайд 10


HTTP Protocol Headers format – [header name]:[header value] groups General Headers – must bet present in ALL requests Request Headers – are present...
Описание слайда:
HTTP Protocol Headers format – [header name]:[header value] groups General Headers – must bet present in ALL requests Request Headers – are present in CLIENT requests only Response Headers – are present in SERVER responses only Entity Headers – details related to content of a request/response some headers belong to few groups

Слайд 11


HTTP Protocol Headers (examples)
Описание слайда:
HTTP Protocol Headers (examples)

Слайд 12


HTTP Protocol Message body Optional Content Overall: any text can be sent In particular: text that target server understands + Entity Headers...
Описание слайда:
HTTP Protocol Message body Optional Content Overall: any text can be sent In particular: text that target server understands + Entity Headers if/where needed

Слайд 13


HTTP Protocol Attachments Message body Sent in forms Key http headers: Content-Type: multipart/form-data Content-Disposition: form-data...
Описание слайда:
HTTP Protocol Attachments Message body Sent in forms Key http headers: Content-Type: multipart/form-data Content-Disposition: form-data Content-Type:[text/plan | application/x-object | etc.]

Слайд 14


HTTP Protocol Message body (example)
Описание слайда:
HTTP Protocol Message body (example)

Слайд 15


HTTP Protocol Message body (example)
Описание слайда:
HTTP Protocol Message body (example)

Слайд 16


HTTP Protocol Status codes 1xx Informational Request received, continuing process 2xx Success Request was received, understood, accepted and...
Описание слайда:
HTTP Protocol Status codes 1xx Informational Request received, continuing process 2xx Success Request was received, understood, accepted and processed successfully 3xx Redirection Client must take additional action to complete the request 4xx Client Error Client seems to have erred 5xx Server Error The server failed to fulfil an apparently valid request

Слайд 17


HTTP Protocol Status codes: We knew it!: 200 – everything is OK 401 – something is wrong with sent credentials 404 – requested page is absent 500 –...
Описание слайда:
HTTP Protocol Status codes: We knew it!: 200 – everything is OK 401 – something is wrong with sent credentials 404 – requested page is absent 500 – server is down Do you know more codes? 1xx – 3 codes 2xx – 10 codes 3xx – 10 codes 4xx – 43 codes 5xx – 16 codes

Слайд 18


Regular expressions
Описание слайда:
Regular expressions

Слайд 19


Regular expressions Regular expressions are quite easy to learn
Описание слайда:
Regular expressions Regular expressions are quite easy to learn

Слайд 20


Regular expressions But doing this by slides is as easy…
Описание слайда:
Regular expressions But doing this by slides is as easy…

Слайд 21


Regular expressions …as learning Chinese
Описание слайда:
Regular expressions …as learning Chinese

Слайд 22


Regular expressions You will have to learn it by yourself
Описание слайда:
Regular expressions You will have to learn it by yourself

Слайд 23


Regular expressions Theory Interactive online tutorial Online regular expression editors Desktop regular expression editor
Описание слайда:
Regular expressions Theory Interactive online tutorial Online regular expression editors Desktop regular expression editor

Слайд 24


Regular expressions But here is some basic understanding
Описание слайда:
Regular expressions But here is some basic understanding

Слайд 25


Regular expressions What to search Where to search How many times it should appear Searching algorithm
Описание слайда:
Regular expressions What to search Where to search How many times it should appear Searching algorithm

Слайд 26


Regular expressions What to search
Описание слайда:
Regular expressions What to search

Слайд 27


Regular expressions Where to search
Описание слайда:
Regular expressions Where to search

Слайд 28


Regular expressions How many times it should appear (quantification)
Описание слайда:
Regular expressions How many times it should appear (quantification)

Слайд 29


Regular expressions Searching algorithm
Описание слайда:
Regular expressions Searching algorithm

Слайд 30


Regular expressions
Описание слайда:
Regular expressions

Слайд 31


Tools that can help SoapUI Check available functions on an endpoint (WADL/WSDL) List of all functions Structure of request/response Try your requests...
Описание слайда:
Tools that can help SoapUI Check available functions on an endpoint (WADL/WSDL) List of all functions Structure of request/response Try your requests before using them in JMeter Developer Tools (Chrome browser) Compare requests in your tests with requests sent by application Headers Content Cookies

Слайд 32


Tools that can help
Описание слайда:
Tools that can help

Слайд 33


Tools that can help
Описание слайда:
Tools that can help

Слайд 34


Performance testing, слайд №34
Описание слайда:



Теги Performance testing
Похожие презентации
Mypresentation.ru
Загрузить презентацию