Esempio n. 1
0
  @Test
  public void setMultiplierBasic() {
    Product product = new Product("test", "Test Product", owner);
    product.setMultiplier(4L);

    assertEquals(Long.valueOf(4), product.getMultiplier());
  }
Esempio n. 2
0
  @Test
  public void testInitialUpdate() {
    Product prod = new Product("test-label", "test-product-name", owner);
    productCurator.create(prod);

    assertNotNull(prod.getUpdated());
  }
Esempio n. 3
0
  @Test
  public void testProductFullConstructor() {
    Product prod = new Product("cp_test-label", "variant", owner, "version", "arch", "", "SVC");
    productCurator.create(prod);

    productCurator.find(prod.getUuid());
  }
Esempio n. 4
0
  @Test
  public void testStyle() {
    SimpleFeatureType unknownType = PlacemarkDescriptorRegistryTest.createYetUnknownFeatureType();
    Product p = new Product("p", "pt", 4, 4);
    VectorDataNode vdn = new VectorDataNode("vdn", unknownType);
    p.getVectorDataGroup().add(vdn);

    MyProductNodeListenerAdapter pnl = new MyProductNodeListenerAdapter();
    p.addProductNodeListener(pnl);

    String defaultStyleCss = vdn.getDefaultStyleCss();

    assertNull(vdn.getStyleCss());

    vdn.setStyleCss("fill:#aabbcc");
    assertEquals("fill:#aabbcc", vdn.getStyleCss());
    assertNotNull(pnl.event);
    assertEquals("styleCss", pnl.event.getPropertyName());
    assertEquals("fill:#aabbcc", pnl.event.getNewValue());
    pnl.event = null;
    vdn.setStyleCss("fill:#aabbcc");
    assertNull(pnl.event);
    vdn.setStyleCss("fill:#000000");
    assertNotNull(pnl.event);
    assertEquals("styleCss", pnl.event.getPropertyName());
    assertEquals("fill:#000000", pnl.event.getNewValue());

    // test that defaultStyleCss is not affected
    assertEquals(defaultStyleCss, vdn.getDefaultStyleCss());
  }
Esempio n. 5
0
  @Test
  public void setMultiplierNegative() {
    Product product = new Product("test", "Test Product", owner);
    product.setMultiplier(-15L);

    assertEquals(Long.valueOf(1), product.getMultiplier());
  }
Esempio n. 6
0
 @Test
 public void testProductAttributeUpdateSuccessZeroInt() {
   Product original = createTestProduct();
   productCurator.create(original);
   assertTrue(original.getUuid() != null);
   original.addAttribute(new ProductAttribute("product.pos_count", "0"));
   productCurator.createOrUpdate(original);
 }
Esempio n. 7
0
 @Test(expected = BadRequestException.class)
 public void testProductAttributeUpdateFailPosLong() {
   Product original = createTestProduct();
   productCurator.create(original);
   assertTrue(original.getUuid() != null);
   original.addAttribute(new ProductAttribute("product.long_pos_count", "-23"));
   productCurator.createOrUpdate(original);
 }
Esempio n. 8
0
 @Test(expected = BadRequestException.class)
 public void testProductAttributeUpdateFailNumberBool() {
   Product original = createTestProduct();
   productCurator.create(original);
   assertTrue(original.getUuid() != null);
   original.addAttribute(new ProductAttribute("product.bool_val_num", "6"));
   productCurator.createOrUpdate(original);
 }
Esempio n. 9
0
 @Test
 public void testEmptyConstructor() throws Exception {
   product = new Product("5678");
   assertEquals("5678", product.getEan());
   assertNull(product.getName());
   assertNotNull(product.getNameProperty());
   assertEquals(0, product.getPrice());
   assertNotNull(product.getPriceProperty());
 }
Esempio n. 10
0
  @Test
  public void testDependentProducts() {
    Product prod = new Product("test-label", "test-product-name", owner);
    HashSet<String> dependentProductIds = new HashSet<String>();
    dependentProductIds.add("ProductX");
    prod.setDependentProductIds(dependentProductIds);
    productCurator.create(prod);

    Product lookedUp = productCurator.find(prod.getUuid());
    assertThat(lookedUp.getDependentProductIds(), hasItem("ProductX"));
  }
Esempio n. 11
0
  @Test
  public void testFind() throws Exception {
    expect(client.get("products/70")).andReturn(request);
    expect(request.code()).andReturn(200);
    expect(request.body()).andReturn(productResponse(true));
    replayAll();

    Response<Product> response = Product._find(client, 70);
    Product product = response.getResource();

    assertEquals("Wrong product name", "Basic", product.getName());
    assertEquals("Wrong product handle", "basic", product.getHandle());
  }
Esempio n. 12
0
  /** Test whether the product updation date is updated when merging. */
  @Test
  public void testSubsequentUpdate() {
    Product prod = new Product("test-label", "test-product-name", owner);
    productCurator.create(prod);

    Calendar calendar = Calendar.getInstance();
    calendar.add(Calendar.MONTH, -2);
    prod.setUpdated(calendar.getTime());

    long updated = prod.getUpdated().getTime();

    prod.setName("test-changed-name");
    prod = this.productCurator.merge(prod);
    assertTrue(prod.getUpdated().getTime() > updated);
  }
Esempio n. 13
0
  @Test
  public void testVectorDataGroup() throws TransformException, FactoryException {
    Product p = new Product("p", "pt", 512, 512);
    assertEquals(2, p.getVectorDataGroup().getNodeCount());

    SimpleFeatureType pinType = Placemark.createPinFeatureType();
    SimpleFeatureType gcpType = Placemark.createGcpFeatureType();

    p.getVectorDataGroup().add(new VectorDataNode("My Pins", pinType));
    p.getVectorDataGroup().add(new VectorDataNode("My GCPs", gcpType));
    assertEquals(4, p.getVectorDataGroup().getNodeCount());

    testVectorData(p, "My Pins", pinType);
    testVectorData(p, "My GCPs", gcpType);
  }
Esempio n. 14
0
  private Product createTestProduct() {
    Product p = TestUtil.createProduct("testProductId", "Test Product", owner);

    ProductAttribute a1 = new ProductAttribute("a1", "a1");
    p.addAttribute(a1);

    ProductAttribute a2 = new ProductAttribute("a2", "a2");
    p.addAttribute(a2);

    ProductAttribute a3 = new ProductAttribute("a3", "a3");
    p.addAttribute(a3);

    p.setMultiplier(1L);
    return p;
  }
  @Before
  public void setUp() {
    owner = new Owner("test-owner", "Test Owner");
    owner = ownerCurator.create(owner);

    e = new Environment("env1", "Env 1", owner);
    envCurator.create(e);

    p = TestUtil.createProduct(owner);
    c =
        new Content(
            this.owner,
            "testcontent",
            "contentId1",
            "testcontent",
            "yum",
            "red hat",
            "http://example.com",
            "http://example.com/gpg.key",
            "test-arch");
    contentCurator.create(c);
    p.addContent(c);
    productCurator.create(p);

    envContent = new EnvironmentContent(e, c, true);
    envContent = envContentCurator.create(envContent);
  }
Esempio n. 16
0
  @Test
  public void testRemoveProductContent() {
    Product p = createTestProduct();
    Content content =
        new Content(
            this.owner,
            "test-content",
            "test-content",
            "test-content",
            "yum",
            "us",
            "here",
            "here",
            "test-arch");
    p.addContent(content);
    contentCurator.create(content);
    productCurator.create(p);

    p = productCurator.find(p.getUuid());
    assertEquals(1, p.getProductContent().size());

    productCurator.removeProductContent(p, content);
    p = productCurator.find(p.getUuid());
    assertEquals(0, p.getProductContent().size());
  }
Esempio n. 17
0
 @Test
 public void testProductAttributeValidationSuccessUpdate() {
   Product original = createTestProduct();
   productCurator.create(original);
   assertTrue(original.getUuid() != null);
   original.setAttribute("product.count", "134");
   original.setAttribute("product.pos_count", "333");
   original.setAttribute(
       "product.long_multiplier", (new Long(Integer.MAX_VALUE * 100)).toString());
   original.setAttribute("product.long_pos_count", "10");
   original.setAttribute("product.bool_val_str", "false");
   original.setAttribute("product.bool_val_num", "1");
   productCurator.createOrUpdate(original);
 }
Esempio n. 18
0
  @Test
  public void listByIds() {
    List<Product> products = new ArrayList<Product>();
    List<String> pids = new ArrayList<String>();
    for (int i = 0; i < 5; i++) {
      Product p = TestUtil.createProduct(owner);
      productCurator.create(p);
      products.add(p);
      pids.add(p.getId());
    }

    // ok get first 3 items to lookup
    List<Product> returned = productCurator.listAllByIds(owner, pids.subList(0, 3));
    assertEquals(3, returned.size());

    // verify the first 3 were actually returned, and only those 3.
    assertTrue(returned.contains(products.get(0)));
    assertTrue(returned.contains(products.get(1)));
    assertTrue(returned.contains(products.get(2)));
    assertFalse(returned.contains(products.get(3)));
    assertFalse(returned.contains(products.get(4)));
  }
Esempio n. 19
0
  @Test
  public void testGetProductIdFromContentUuid() {
    Product p = createTestProduct();
    Content content =
        new Content(
            this.owner,
            "best-content",
            "best-content",
            "best-content",
            "yum",
            "us",
            "here",
            "here",
            "test-arch");
    p.addContent(content);
    contentCurator.create(content);
    productCurator.create(p);

    List<String> contentUuids = new LinkedList<String>();
    contentUuids.add(content.getUuid());
    List<Product> products = productCurator.getProductsWithContent(contentUuids);
    assertEquals(1, products.size());
    assertEquals(p, products.get(0));
  }
 @Before
 public void setUp() {
   ProductsList productsList = new ProductsList();
   Product productA = new Product("A", "A");
   productA.getProductPrices().putPrice(1, new BigDecimal(1.25));
   productA.getProductPrices().putPrice(3, new BigDecimal(3.00));
   Product productB = new Product("B", "B");
   productB.getProductPrices().putPrice(1, new BigDecimal(4.25));
   Product productC = new Product("C", "C");
   productC.getProductPrices().putPrice(1, new BigDecimal(1.00));
   productC.getProductPrices().putPrice(6, new BigDecimal(5.00));
   Product productD = new Product("D", "D");
   productD.getProductPrices().putPrice(1, new BigDecimal(0.75));
   productsList.putProduct(productA);
   productsList.putProduct(productB);
   productsList.putProduct(productC);
   productsList.putProduct(productD);
   terminal = new PointOfSaleTerminalImpl(productsList);
 }
Esempio n. 21
0
  @Test
  public void nameNonUnique() {

    Product prod = new Product("label1", "name", owner);
    productCurator.create(prod);

    Product prod2 = new Product("label2", "name", owner);
    productCurator.create(prod2);

    assertEquals(prod.getName(), prod2.getName());
    assertFalse(prod.getUuid().equals(prod2.getUuid()));
  }
Esempio n. 22
0
  @Test
  public void testSaveOrUpdateProductNoDuplicateProdContent() {
    Product p = createTestProduct();
    Content content =
        new Content(
            this.owner,
            "best-content",
            "best-content",
            "best-content",
            "yum",
            "us",
            "here",
            "here",
            "test-arch");

    p.addContent(content);
    contentCurator.create(content);
    productCurator.createOrUpdate(p);

    // Technically the same product:
    Product p2 = createTestProduct();

    // The content isn't quite the same. We just care about matching
    // product ids with content ids
    Content contentUpdate =
        new Content(
            this.owner,
            "best-content",
            "best-content",
            "best-content",
            "yum",
            "us",
            "here",
            "differnet",
            "test-arch");

    contentUpdate.setUuid(content.getUuid());

    p2.addContent(contentUpdate);
    productCurator.createOrUpdate(p2);

    Product result = productCurator.find(p.getUuid());
    assertEquals(1, result.getProductContent().size());
  }
Esempio n. 23
0
  @Test
  public void testWithSimpleJsonAttribute() throws Exception {
    Map<String, String> data = new HashMap<String, String>();
    data.put("a", "1");
    data.put("b", "2");
    ObjectMapper mapper = new ObjectMapper();
    String jsonData = mapper.writeValueAsString(data);

    Product prod = new Product("cptest-label", "My Product", owner);
    ProductAttribute a = new ProductAttribute("content_sets", jsonData);
    prod.addAttribute(a);
    productCurator.create(prod);
    attributeCurator.create(a);

    Product lookedUp = productCurator.find(prod.getUuid());
    assertEquals(jsonData, lookedUp.getAttribute("content_sets").getValue());

    data =
        mapper.readValue(
            lookedUp.getAttribute("content_sets").getValue(),
            new TypeReference<Map<String, String>>() {});
    assertEquals("1", data.get("a"));
    assertEquals("2", data.get("b"));
  }
Esempio n. 24
0
  @Test
  public void testJsonListOfHashes() throws Exception {
    List<Map<String, String>> data = new LinkedList<Map<String, String>>();
    Map<String, String> contentSet1 = new HashMap<String, String>();
    contentSet1.put("name", "cs1");
    contentSet1.put("url", "url");

    Map<String, String> contentSet2 = new HashMap<String, String>();
    contentSet2.put("name", "cs2");
    contentSet2.put("url", "url2");

    data.add(contentSet1);
    data.add(contentSet2);

    ObjectMapper mapper = new ObjectMapper();
    String jsonData = mapper.writeValueAsString(data);

    Product prod = new Product("cptest-label", "My Product", owner);
    ProductAttribute a = new ProductAttribute("content_sets", jsonData);
    prod.addAttribute(a);
    productCurator.create(prod);
    attributeCurator.create(a);

    Product lookedUp = productCurator.find(prod.getUuid());
    assertEquals(jsonData, lookedUp.getAttribute("content_sets").getValue());

    data =
        mapper.readValue(
            lookedUp.getAttribute("content_sets").getValue(),
            new TypeReference<List<Map<String, String>>>() {});
    Map<String, String> cs1 = data.get(0);
    assertEquals("cs1", cs1.get("name"));

    Map<String, String> cs2 = data.get(1);
    assertEquals("cs2", cs2.get("name"));
  }
Esempio n. 25
0
 @Test
 public void testSubstringConfigList() {
   Product original = createTestProduct();
   original.addAttribute(new ProductAttribute("product.pos", "-5"));
   productCurator.create(original);
 }
Esempio n. 26
0
 @Test(expected = BadRequestException.class)
 public void testProductAttributeCreationFailNumberBool() {
   Product original = createTestProduct();
   original.addAttribute(new ProductAttribute("product.bool_val_num", "2"));
   productCurator.create(original);
 }
Esempio n. 27
0
 @Test(expected = BadRequestException.class)
 public void testProductAttributeCreationFailBadPosLong() {
   Product original = createTestProduct();
   original.addAttribute(new ProductAttribute("product.long_pos_count", "-1"));
   productCurator.create(original);
 }
Esempio n. 28
0
 @Test(expected = BadRequestException.class)
 public void testProductAttributeCreationFailBadLong() {
   Product original = createTestProduct();
   original.addAttribute(new ProductAttribute("product.long_multiplier", "ZZ"));
   productCurator.create(original);
 }
Esempio n. 29
0
 @Test
 public void testProductAttributeCreationSuccessZeroInt() {
   Product original = createTestProduct();
   original.addAttribute(new ProductAttribute("product.pos_count", "0"));
   productCurator.create(original);
 }
Esempio n. 30
0
  @Test
  public void testUpdateProduct() {
    Product original = createTestProduct();
    productCurator.create(original);
    // Will have same ID, but we'll modify other data:
    Product modified = createTestProduct();
    String newName = "new name";
    modified.setName(newName);

    // Hack up the attributes, keep a1, skip a2, modify a3, add a4:
    Set<ProductAttribute> newAttributes = new HashSet<ProductAttribute>();
    newAttributes.add(modified.getAttribute("a1"));
    ProductAttribute a3 = modified.getAttribute("a3");
    a3.setValue("a3-modified");
    a3.setProduct(modified);
    newAttributes.add(a3);
    ProductAttribute a4 = new ProductAttribute("a4", "a4");
    a4.setProduct(modified);
    newAttributes.add(a4);
    modified.setAttributes(newAttributes);

    int initialAttrCount = attributeCurator.listAll().size();
    productCurator.createOrUpdate(modified);

    Product lookedUp = productCurator.lookupById(owner, original.getId());
    assertEquals(newName, lookedUp.getName());
    assertEquals(3, lookedUp.getAttributes().size());
    assertEquals("a1", lookedUp.getAttributeValue("a1"));
    assertEquals("a3-modified", lookedUp.getAttributeValue("a3"));
    assertEquals("a4", lookedUp.getAttributeValue("a4"));

    // TODO: test content merging

    // Old attributes should get cleaned up:
    assertEquals(initialAttrCount, attributeCurator.listAll().size());
  }