Tags: googleapis/storage-testbench
Tags
feat(storage): Simulate object custom contexts (#764) b/457332685 This simulates the Json and gRPC responses for object contexts with the following operations: 1. Insert or Complete Update - Input: {contexts: {custom: {key: value}}} - Update_mask: contexts - Simulation: Add new entries to the object.contexts and furnish with create_time and update_time 2. Patch (Update an existing key) - Input: {contexts: {custom: {key: new-value}}} - Update_mask: contexts.custom.key - Simulation: Update the value of the key to "new-value" and furnish with update_time 3. Patch (Delete an existing key) - Input: {contexts: {custom: {key: null}}} - Update_mask: contexts.custom.key - Simulation: Delete that entry with that key from object.contexts 4. Patch (Delete all the contexts) - Input: {contexts: {custom: null}} - Update_mask: contexts:custom - Simulation: Delete the contexts field from object, making that object looks like its default
feat: add support for partial list bucket for JSON (#744) * feat: add support for partial list bucket for JSON * fix lint * fix lint * fix unit tests * minor fix * add more unit tests * add support for integration tests for sdk * add more unit tests * resolving comments
fix: Get a message before redirecting. (#725) * fix: Get a message before redirecting. The server generally won't know if a redirect is required until it sees the first message. Since this is the common case, do that in tests with redirect instructions. * fix lint * fix lint again * attempt to kick off lint again
PreviousNext