-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathregeneration.feature
More file actions
19 lines (17 loc) · 671 Bytes
/
regeneration.feature
File metadata and controls
19 lines (17 loc) · 671 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Feature: Session ID Regeneration
IDs may be regenerated for security.
Existing session data is copied to the new generated ID.
The old session ID may be deleted when the new ID is generated.
Scenario Outline: Session ID is regenerated
Given session <handler> stored at <location>
And session is started and modified
When session ID is regenerated, delete old session
Then session ID should change
And session data should be preserved
And old session should not remain
Examples:
| handler | location |
| kodus | A |
| scrapbook | B |
| redis | 0 |
| file | C |