|
| 1 | +[ |
| 2 | + { |
| 3 | + "name": "prefix-uppercase", |
| 4 | + "typeid": "PREFIX_00000000000000000000000000", |
| 5 | + "description": "The prefix should be lowercase with no uppercase letters" |
| 6 | + }, |
| 7 | + { |
| 8 | + "name": "prefix-numeric", |
| 9 | + "typeid": "12345_00000000000000000000000000", |
| 10 | + "description": "The prefix can't have numbers, it needs to be alphabetic" |
| 11 | + }, |
| 12 | + { |
| 13 | + "name": "prefix-period", |
| 14 | + "typeid": "pre.fix_00000000000000000000000000", |
| 15 | + "description": "The prefix can't have symbols, it needs to be alphabetic" |
| 16 | + }, |
| 17 | + { |
| 18 | + "name": "prefix-underscore", |
| 19 | + "typeid": "pre_fix_00000000000000000000000000", |
| 20 | + "description": "The prefix can't have symbols, it needs to be alphabetic" |
| 21 | + }, |
| 22 | + { |
| 23 | + "name": "prefix-non-ascii", |
| 24 | + "typeid": "préfix_00000000000000000000000000", |
| 25 | + "description": "The prefix can only have ascii letters" |
| 26 | + }, |
| 27 | + { |
| 28 | + "name": "prefix-spaces", |
| 29 | + "typeid": " prefix_00000000000000000000000000", |
| 30 | + "description": "The prefix can't have any spaces" |
| 31 | + }, |
| 32 | + { |
| 33 | + "name": "prefix-64-chars", |
| 34 | + "typeid": "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl_00000000000000000000000000", |
| 35 | + "description": "The prefix can't be 64 characters, it needs to be 63 characters or less" |
| 36 | + }, |
| 37 | + { |
| 38 | + "name": "separator-empty-prefix", |
| 39 | + "typeid": "_00000000000000000000000000", |
| 40 | + "description": "If the prefix is empty, the separator should not be there" |
| 41 | + }, |
| 42 | + { |
| 43 | + "name": "separator-empty", |
| 44 | + "typeid": "_", |
| 45 | + "description": "A separator by itself should not be treated as the empty string" |
| 46 | + }, |
| 47 | + { |
| 48 | + "name": "suffix-short", |
| 49 | + "typeid": "prefix_1234567890123456789012345", |
| 50 | + "description": "The suffix can't be 25 characters, it needs to be exactly 26 characters" |
| 51 | + }, |
| 52 | + { |
| 53 | + "name": "suffix-long", |
| 54 | + "typeid": "prefix_123456789012345678901234567", |
| 55 | + "description": "The suffix can't be 27 characters, it needs to be exactly 26 characters" |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "suffix-spaces", |
| 59 | + "typeid": "prefix_1234567890123456789012345 ", |
| 60 | + "description": "The suffix can't have any spaces" |
| 61 | + }, |
| 62 | + { |
| 63 | + "name": "suffix-uppercase", |
| 64 | + "typeid": "prefix_0123456789ABCDEFGHJKMNPQRS", |
| 65 | + "description": "The suffix should be lowercase with no uppercase letters" |
| 66 | + }, |
| 67 | + { |
| 68 | + "name": "suffix-hyphens", |
| 69 | + "typeid": "prefix_123456789-123456789-123456", |
| 70 | + "description": "The suffix should be lowercase with no uppercase letters" |
| 71 | + }, |
| 72 | + { |
| 73 | + "name": "suffix-wrong-alphabet", |
| 74 | + "typeid": "prefix_ooooooiiiiiiuuuuuuulllllll", |
| 75 | + "description": "The suffix should only have letters from the spec's alphabet" |
| 76 | + }, |
| 77 | + { |
| 78 | + "name": "suffix-ambiguous-crockford", |
| 79 | + "typeid": "prefix_i23456789ol23456789oi23456", |
| 80 | + "description": "The suffix should not have any ambiguous characters from the crockford encoding" |
| 81 | + }, |
| 82 | + { |
| 83 | + "name": "suffix-hyphens-crockford", |
| 84 | + "typeid": "prefix_123456789-0123456789-0123456", |
| 85 | + "description": "The suffix can't ignore hyphens as in the crockford encoding" |
| 86 | + }, |
| 87 | + { |
| 88 | + "name": "suffix-overflow", |
| 89 | + "typeid": "prefix_8zzzzzzzzzzzzzzzzzzzzzzzzz", |
| 90 | + "description": "The should encode at most 128-bits" |
| 91 | + } |
| 92 | +] |
0 commit comments