As you note, there is no emulator for the GCS service (see #4897, #4840): constructing one is not within scope for the google-cloud-storage library project.
"Mocking" is perhaps ambiguous -- to me it implies more of a unit testing context, e.g.:
from google.cloud import storage
import mock
def test_code_using_gcs():
client = mock.create_autospec(storage.Client)
# now set 'return_value', etc. on client's methods.
Most helpful comment
As you note, there is no emulator for the GCS service (see #4897, #4840): constructing one is not within scope for the
google-cloud-storagelibrary project."Mocking" is perhaps ambiguous -- to me it implies more of a unit testing context, e.g.: