Advertisement
4tolexx

form definitions csv export feature test and implementation

Apr 2nd, 2025
652
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Feature: Export Form Definitions as CSV
  2.  
  3.   Background:
  4.     Given form definition "Form 1" with:
  5.       | locked_at               | 2025-04-02T10:00:00                  |
  6.       | locked_configuration_id | b9bff254-4877-4c3c-b813-bbf2645c547e |
  7.     And form definition "Form 2" with:
  8.       | locked_at               | 2025-04-02T11:00:00                  |
  9.       | locked_configuration_id | d959e932-20db-4f9c-9521-65cba31d2bf4 |
  10.  
  11.   Scenario: Export form definitions as csv
  12.     When I sign in as a user with all permissions
  13.     And I browse to form_definitions list
  14.     Then I see "Form 1"
  15.     And I see "Form 2"
  16.     When I click "CSV"
  17.     Then I download a CSV with content:
  18.       | Id     | Name   | Current configuration | Locked configuration | Locked at  | Created at | Updated at |
  19.       | <UUID> | Form 1 | <UUID>                | <UUID>               | <ISO_DATE> | <ISO_DATE> | <ISO_DATE> |
  20.       | <UUID> | Form 2 | <UUID>                | <UUID>               | <ISO_DATE> | <ISO_DATE> | <ISO_DATE> |
  21.  
  22.  
  23.   csv do
  24.     column :id
  25.     column(:name) { |fd| fd.object.name }
  26.     column :current_configuration_id
  27.     column :locked_configuration_id
  28.     column :locked_at
  29.     column :created_at
  30.     column :updated_at
  31.   end
  32.  
  33.   when "<UUID>" then match(/^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/i)
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement