mirror of
https://github.com/logos-messaging/logos-messaging-interop-tests.git
synced 2026-01-03 06:23:12 +00:00
43 lines
3.0 KiB
Python
43 lines
3.0 KiB
Python
|
|
SAMPLE_INPUTS = [
|
||
|
|
{"description": "A simple string.", "value": "Hello World!"},
|
||
|
|
{"description": "An integer.", "value": "1234567890"},
|
||
|
|
{"description": "A dictionary.", "value": '{"key": "value"}'},
|
||
|
|
{"description": "Chinese characters.", "value": "这是一些中文"},
|
||
|
|
{"description": "Emojis.", "value": "🚀🌟✨"},
|
||
|
|
{"description": "Lorem ipsum text.", "value": "Lorem ipsum dolor sit amet"},
|
||
|
|
{"description": "HTML content.", "value": "<html><body>Hello</body></html>"},
|
||
|
|
{"description": "Cyrillic characters.", "value": "\u041f\u0440\u0438\u0432\u0435\u0442"},
|
||
|
|
{"description": "Base64 encoded string.", "value": "Base64==dGVzdA=="},
|
||
|
|
{"description": "Binary data.", "value": "d29ya2luZyB3aXRoIGJpbmFyeSBkYXRh: \x50\x51"},
|
||
|
|
{"description": "Special characters with whitespace.", "value": "\t\nSpecial\tCharacters\n"},
|
||
|
|
{"description": "Boolean false as a string.", "value": "False"},
|
||
|
|
{"description": "A float number.", "value": "3.1415926535"},
|
||
|
|
{"description": "A list.", "value": "[1, 2, 3, 4, 5]"},
|
||
|
|
{"description": "Hexadecimal number as a string.", "value": "0xDEADBEEF"},
|
||
|
|
{"description": "Email format.", "value": "user@example.com"},
|
||
|
|
{"description": "URL format.", "value": "http://example.com"},
|
||
|
|
{"description": "Date and time in ISO format.", "value": "2023-11-01T12:00:00Z"},
|
||
|
|
{"description": "String with escaped quotes.", "value": '"Escaped" \\"quotes\\"'},
|
||
|
|
{"description": "A regular expression.", "value": "Regular expression: ^[a-z0-9_-]{3,16}$"},
|
||
|
|
{"description": "A very long string.", "value": "x" * 1000},
|
||
|
|
{"description": "A JSON string.", "value": '{"name": "John", "age": 30, "city": "New York"}'},
|
||
|
|
{"description": "A Unix path.", "value": "/usr/local/bin"},
|
||
|
|
{"description": "A Windows path.", "value": "C:\\Windows\\System32"},
|
||
|
|
{"description": "An SQL query.", "value": "SELECT * FROM users WHERE id = 1;"},
|
||
|
|
{"description": "JavaScript code snippet.", "value": "function test() { console.log('Hello World'); }"},
|
||
|
|
{"description": "A CSS snippet.", "value": "body { background-color: #fff; }"},
|
||
|
|
{"description": "A Python one-liner.", "value": "print('Hello World')"},
|
||
|
|
{"description": "An IP address.", "value": "192.168.1.1"},
|
||
|
|
{"description": "A domain name.", "value": "www.example.com"},
|
||
|
|
{"description": "A user agent string.", "value": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)"},
|
||
|
|
{"description": "A credit card number.", "value": "1234-5678-9012-3456"},
|
||
|
|
{"description": "A phone number.", "value": "+1234567890"},
|
||
|
|
{"description": "A UUID.", "value": "123e4567-e89b-12d3-a456-426614174000"},
|
||
|
|
{"description": "A hashtag.", "value": "#helloWorld"},
|
||
|
|
{"description": "A Twitter handle.", "value": "@username"},
|
||
|
|
{"description": "A password.", "value": "P@ssw0rd!"},
|
||
|
|
{"description": "A date in common format.", "value": "01/11/2023"},
|
||
|
|
{"description": "A time string.", "value": "12:00:00"},
|
||
|
|
{"description": "A mathematical equation.", "value": "E = mc^2"},
|
||
|
|
]
|