(t *testing.T)
| 558 | } |
| 559 | |
| 560 | func TestStandardEncryptDirNameBase64(t *testing.T) { |
| 561 | testStandardEncryptDirName(t, "base64", []EncodingTestCase{ |
| 562 | {"1", "yBxRX25ypgUVyj8MSxJnFw"}, |
| 563 | {"1/12", "yBxRX25ypgUVyj8MSxJnFw/qQUDHOGN_jVdLIMQzYrhvA"}, |
| 564 | {"1/12/123", "yBxRX25ypgUVyj8MSxJnFw/qQUDHOGN_jVdLIMQzYrhvA/1CxFf2Mti1xIPYlGruDh-A"}, |
| 565 | }) |
| 566 | } |
| 567 | |
| 568 | func TestStandardEncryptDirNameBase32768(t *testing.T) { |
| 569 | testStandardEncryptDirName(t, "base32768", []EncodingTestCase{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…