# serializer version: 1 # name: TestClientConfiguration.test_default ClientConfiguration { profile: "production", api_url: "https://api.qcs.rigetti.com", grpc_api_url: "https://grpc.qcs.rigetti.com", quilc_url: "tcp://127.0.0.1:5555", qvm_url: "http://127.0.0.1:5000", oauth_session: Some(TokenDispatcher { lock: RwLock { data: OAuthSession { payload: RefreshToken(RefreshToken { refresh_token: "refresh_production" }), access_token: Some("access_production"), auth_server: AuthServer { client_id: "client_id_production", issuer: "https://auth.qcs.rigetti.com/oauth2/production" } } }, refreshing: Mutex { data: false }, notify_refreshed: Notify { state: 0, waiters: Mutex(Mutex { data: LinkedList { head: None, tail: None }, poisoned: false, .. }) } }) } # --- # name: TestClientConfiguration.test_load_profile ClientConfiguration { profile: "test", api_url: "https://test.qcs.rigetti.com", grpc_api_url: "https://grpc.test.qcs.rigetti.com", quilc_url: "tcp://127.0.0.1:5555", qvm_url: "http://127.0.0.1:5000", oauth_session: Some(TokenDispatcher { lock: RwLock { data: OAuthSession { payload: RefreshToken(RefreshToken { refresh_token: "refresh_test" }), access_token: Some("access_test"), auth_server: AuthServer { client_id: "client_id_test", issuer: "https://auth.test.qcs.rigetti.com/oauth2/test" } } }, refreshing: Mutex { data: false }, notify_refreshed: Notify { state: 0, waiters: Mutex(Mutex { data: LinkedList { head: None, tail: None }, poisoned: false, .. }) } }) } # --- # name: TestClientConfigurationBuilder.test_build ClientConfiguration { profile: "default", api_url: "builder_api_url", grpc_api_url: "builder_grpc_api_url", quilc_url: "builder_quilc_url", qvm_url: "builder_qvm_url", oauth_session: Some(TokenDispatcher { lock: RwLock { data: OAuthSession { payload: RefreshToken(RefreshToken { refresh_token: "builder_refresh_token" }), access_token: Some("builder_access_token"), auth_server: AuthServer { client_id: "builder_client_id", issuer: "builder_issuer" } } }, refreshing: Mutex { data: false }, notify_refreshed: Notify { state: 0, waiters: Mutex(Mutex { data: LinkedList { head: None, tail: None }, poisoned: false, .. }) } }) } # ---