Search in sources :

Example 1 with DeletedProduct

use of com.stripe.model.DeletedProduct in project stripe-java by stripe.

the class RelayTest method testSKUProductDeletion.

@Test
public void testSKUProductDeletion() throws StripeException {
    final RequestOptions relayRequestOptions = RequestOptions.builder().setApiKey("sk_test_JieJALRz7rPz7boV17oMma7a").build();
    Map<String, Object> productCreateParams = new HashMap<String, Object>();
    String productId = "my_first_product_" + UUID.randomUUID();
    productCreateParams.put("id", productId);
    productCreateParams.put("type", "good");
    productCreateParams.put("name", "Watermelon");
    productCreateParams.put("attributes[]", "size");
    final Product createdProduct = Product.create(productCreateParams, relayRequestOptions);
    Map<String, Object> skuCreateParams = new HashMap<String, Object>();
    String skuId = "my_first_sku_" + UUID.randomUUID();
    skuCreateParams.put("id", skuId);
    skuCreateParams.put("product", productId);
    skuCreateParams.put("attributes", ImmutableMap.of("size", "large"));
    skuCreateParams.put("price", 100);
    skuCreateParams.put("currency", "usd");
    skuCreateParams.put("inventory", ImmutableMap.of("type", "infinite"));
    SKU created = SKU.create(skuCreateParams, relayRequestOptions);
    DeletedSKU deletedSKU = created.delete(relayRequestOptions);
    assertTrue(deletedSKU.getDeleted());
    DeletedProduct deletedProduct = createdProduct.delete(relayRequestOptions);
    assertTrue(deletedProduct.getDeleted());
}
Also used : DeletedSKU(com.stripe.model.DeletedSKU) RequestOptions(com.stripe.net.RequestOptions) HashMap(java.util.HashMap) DeletedProduct(com.stripe.model.DeletedProduct) Product(com.stripe.model.Product) SKU(com.stripe.model.SKU) DeletedSKU(com.stripe.model.DeletedSKU) DeletedProduct(com.stripe.model.DeletedProduct) BaseStripeFunctionalTest(com.stripe.BaseStripeFunctionalTest) Test(org.junit.Test)

Aggregations

BaseStripeFunctionalTest (com.stripe.BaseStripeFunctionalTest)1 DeletedProduct (com.stripe.model.DeletedProduct)1 DeletedSKU (com.stripe.model.DeletedSKU)1 Product (com.stripe.model.Product)1 SKU (com.stripe.model.SKU)1 RequestOptions (com.stripe.net.RequestOptions)1 HashMap (java.util.HashMap)1 Test (org.junit.Test)1