This is an automated email from the ASF dual-hosted git repository.

rcordier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/james-project.git

commit 2d67d98bb5820493fd453ecb267a0381a8061ba4
Author: Rene Cordier <[email protected]>
AuthorDate: Wed Apr 8 17:07:26 2020 +0700

    JAMES-3138 Add QuotaOperation pojo in mailbox-api
---
 .../apache/james/mailbox/model/QuotaOperation.java | 71 ++++++++++++++++++++++
 .../james/mailbox/model/QuotaOperationTest.java    | 64 +++++++++++++++++++
 2 files changed, 135 insertions(+)

diff --git 
a/mailbox/api/src/main/java/org/apache/james/mailbox/model/QuotaOperation.java 
b/mailbox/api/src/main/java/org/apache/james/mailbox/model/QuotaOperation.java
new file mode 100644
index 0000000..f788c40
--- /dev/null
+++ 
b/mailbox/api/src/main/java/org/apache/james/mailbox/model/QuotaOperation.java
@@ -0,0 +1,71 @@
+/****************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one   *
+ * or more contributor license agreements.  See the NOTICE file *
+ * distributed with this work for additional information        *
+ * regarding copyright ownership.  The ASF licenses this file   *
+ * to you under the Apache License, Version 2.0 (the            *
+ * "License"); you may not use this file except in compliance   *
+ * with the License.  You may obtain a copy of the License at   *
+ *                                                              *
+ *   http://www.apache.org/licenses/LICENSE-2.0                 *
+ *                                                              *
+ * Unless required by applicable law or agreed to in writing,   *
+ * software distributed under the License is distributed on an  *
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
+ * KIND, either express or implied.  See the License for the    *
+ * specific language governing permissions and limitations      *
+ * under the License.                                           *
+ ****************************************************************/
+
+package org.apache.james.mailbox.model;
+
+import java.util.Objects;
+
+import org.apache.james.core.quota.QuotaCountUsage;
+import org.apache.james.core.quota.QuotaSizeUsage;
+
+import com.google.common.base.Preconditions;
+
+public class QuotaOperation {
+    private final QuotaRoot quotaRoot;
+    private final QuotaCountUsage count;
+    private final QuotaSizeUsage size;
+
+    public QuotaOperation(QuotaRoot quotaRoot, QuotaCountUsage count, 
QuotaSizeUsage size) {
+        Preconditions.checkArgument(count.asLong() > 0, "Count should be 
strictly positive");
+        Preconditions.checkArgument(size.asLong() > 0, "Size should be 
strictly positive");
+
+        this.quotaRoot = quotaRoot;
+        this.count = count;
+        this.size = size;
+    }
+
+    public QuotaRoot quotaRoot() {
+        return quotaRoot;
+    }
+
+    public QuotaCountUsage count() {
+        return count;
+    }
+
+    public QuotaSizeUsage size() {
+        return size;
+    }
+
+    @Override
+    public final boolean equals(Object o) {
+        if (o instanceof QuotaOperation) {
+            QuotaOperation quotaOperation = (QuotaOperation) o;
+
+            return Objects.equals(this.quotaRoot, quotaOperation.quotaRoot)
+                && Objects.equals(this.count, quotaOperation.count)
+                && Objects.equals(this.size, quotaOperation.size);
+        }
+        return false;
+    }
+
+    @Override
+    public final int hashCode() {
+        return Objects.hash(quotaRoot, count, size);
+    }
+}
diff --git 
a/mailbox/api/src/test/java/org/apache/james/mailbox/model/QuotaOperationTest.java
 
b/mailbox/api/src/test/java/org/apache/james/mailbox/model/QuotaOperationTest.java
new file mode 100644
index 0000000..2a71822
--- /dev/null
+++ 
b/mailbox/api/src/test/java/org/apache/james/mailbox/model/QuotaOperationTest.java
@@ -0,0 +1,64 @@
+/****************************************************************
+ * Licensed to the Apache Software Foundation (ASF) under one   *
+ * or more contributor license agreements.  See the NOTICE file *
+ * distributed with this work for additional information        *
+ * regarding copyright ownership.  The ASF licenses this file   *
+ * to you under the Apache License, Version 2.0 (the            *
+ * "License"); you may not use this file except in compliance   *
+ * with the License.  You may obtain a copy of the License at   *
+ *                                                              *
+ *   http://www.apache.org/licenses/LICENSE-2.0                 *
+ *                                                              *
+ * Unless required by applicable law or agreed to in writing,   *
+ * software distributed under the License is distributed on an  *
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY       *
+ * KIND, either express or implied.  See the License for the    *
+ * specific language governing permissions and limitations      *
+ * under the License.                                           *
+ ****************************************************************/
+
+package org.apache.james.mailbox.model;
+
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+import java.util.Optional;
+
+import org.apache.james.core.quota.QuotaCountUsage;
+import org.apache.james.core.quota.QuotaSizeUsage;
+import org.junit.jupiter.api.Test;
+
+import nl.jqno.equalsverifier.EqualsVerifier;
+
+class QuotaOperationTest {
+    static final QuotaRoot QUOTA_ROOT = QuotaRoot.quotaRoot("user", 
Optional.empty());
+
+    @Test
+    void shouldRespectBeanContract() {
+        EqualsVerifier.forClass(QuotaOperation.class)
+            .verify();
+    }
+
+    @Test
+    void shouldThrowWhenCountIsZero() {
+        assertThatThrownBy(() -> new QuotaOperation(QUOTA_ROOT, 
QuotaCountUsage.count(0), QuotaSizeUsage.size(5)))
+            .isInstanceOf(IllegalArgumentException.class);
+    }
+
+    @Test
+    void shouldThrowWhenCountIsNegative() {
+        assertThatThrownBy(() -> new QuotaOperation(QUOTA_ROOT, 
QuotaCountUsage.count(-1), QuotaSizeUsage.size(5)))
+            .isInstanceOf(IllegalArgumentException.class);
+    }
+
+    @Test
+    void shouldThrowWhenSizeIsZero() {
+        assertThatThrownBy(() -> new QuotaOperation(QUOTA_ROOT, 
QuotaCountUsage.count(5), QuotaSizeUsage.size(0)))
+            .isInstanceOf(IllegalArgumentException.class);
+    }
+
+    @Test
+    void shouldThrowWhenSizeIsNegative() {
+        assertThatThrownBy(() -> new QuotaOperation(QUOTA_ROOT, 
QuotaCountUsage.count(5), QuotaSizeUsage.size(-1)))
+            .isInstanceOf(IllegalArgumentException.class);
+    }
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to