
2 changed files with 127 additions and 0 deletions
@ -0,0 +1,34 @@ |
|||||
|
include ../../../../../../../Makefile.conf |
||||
|
include ../Makefile.conf |
||||
|
|
||||
|
TEST_UNIT_NAME=jni132 |
||||
|
|
||||
|
JAVA_CLASSES+= \
|
||||
|
TestAlice.class |
||||
|
|
||||
|
.PHONY: pitytest compile alice test clean |
||||
|
|
||||
|
all: alice compile |
||||
|
|
||||
|
pitytest: |
||||
|
$(MAKE) -C $(PITYTEST_DIR) |
||||
|
|
||||
|
alice: compile clean-pep-home-alice |
||||
|
cd $(JAVA_CWD);pwd;HOME=$(JAVA_PEP_HOME_DIR_ALICE) $(JAVA) $(JAVA_PKG_BASENAME).$(TEST_UNIT_NAME).TestAlice |
||||
|
|
||||
|
compile: $(JAVA_CLASSES) pitytest |
||||
|
|
||||
|
%.class: %.java |
||||
|
cd $(JAVA_CWD);javac -cp $(CLASSPATH) $(JAVA_PKG_BASEPATH)/$(TEST_UNIT_NAME)/$< |
||||
|
|
||||
|
clean: |
||||
|
rm -f $(JAVA_CLASSES) |
||||
|
rm -f *.class |
||||
|
rm -f *.log |
||||
|
rm -Rf .gnupg |
||||
|
rm -Rf .lldb |
||||
|
|
||||
|
clean-pep-home: clean-pep-home-alice |
||||
|
|
||||
|
clean-pep-home-alice: |
||||
|
rm -rf $(PEP_HOME_DIR_ALICE)/.pEp |
@ -0,0 +1,93 @@ |
|||||
|
package foundation.pEp.jniadapter.test.jni132; |
||||
|
|
||||
|
|
||||
|
import foundation.pEp.jniadapter.Blob; |
||||
|
import foundation.pEp.jniadapter.test.utils.AdapterTestUtils; |
||||
|
import foundation.pEp.jniadapter.test.utils.CTXBase; |
||||
|
import foundation.pEp.pitytest.TestSuite; |
||||
|
import foundation.pEp.pitytest.TestUnit; |
||||
|
import foundation.pEp.pitytest.utils.TestUtils; |
||||
|
|
||||
|
import java.util.Arrays; |
||||
|
/* |
||||
|
JNI-132 - implement java.object.equals() for Blob |
||||
|
|
||||
|
tests equality definition of Blob |
||||
|
|
||||
|
equality definition: |
||||
|
- bytewise equality of data |
||||
|
- URI equality of filename |
||||
|
- bytewise equality of mime_type |
||||
|
*/ |
||||
|
|
||||
|
|
||||
|
class TestAlice { |
||||
|
public static void main(String[] args) throws Exception { |
||||
|
TestSuite.getDefault().setVerbose(true); |
||||
|
TestSuite.getDefault().setTestColor(TestUtils.TermColor.GREEN); |
||||
|
CTXBase jni132Ctx = new CTXBase(); |
||||
|
|
||||
|
// SAME
|
||||
|
new TestUnit<CTXBase>("Blob.equals() equality", new CTXBase(), ctx -> { |
||||
|
Blob one = AdapterTestUtils.makeNewTestBlob("testBlob data", "testblobfilename", null); |
||||
|
Blob two = AdapterTestUtils.makeNewTestBlob("testBlob data", "testblobfilename", null); |
||||
|
assert one.equals(two) : "\n" + one.toString() + "\n" + "does not equal:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
new TestUnit<CTXBase>("Blob.equals() equality", new CTXBase(), ctx -> { |
||||
|
Blob one = AdapterTestUtils.makeNewTestBlob("testBlob data", "file://testblobfilename", null); |
||||
|
Blob two = AdapterTestUtils.makeNewTestBlob("testBlob data", "testblobfilename", null); |
||||
|
assert one.equals(two) : "\n" + one.toString() + "\n" + "does not equal:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
new TestUnit<CTXBase>("Blob.equals() equality", new CTXBase(), ctx -> { |
||||
|
Blob one = AdapterTestUtils.makeNewTestBlob(1000000, "testfilename", "anything goes"); |
||||
|
Blob two = new Blob(); |
||||
|
two.mime_type = new String(one.mime_type); |
||||
|
two.filename = new String(one.filename); |
||||
|
two.data = Arrays.copyOf(one.data, one.data.length); |
||||
|
assert one.equals(two) : "\n" + one.toString() + "\n" + "does not equal:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
new TestUnit<CTXBase>("Blob.equals() equality", new CTXBase(), ctx -> { |
||||
|
Blob one = AdapterTestUtils.makeNewTestBlob(1000000, "file://testfilename", "anything goes"); |
||||
|
Blob two = new Blob(); |
||||
|
two.mime_type = new String(one.mime_type); |
||||
|
two.filename = new String(one.filename); |
||||
|
two.data = Arrays.copyOf(one.data, one.data.length); |
||||
|
assert one.equals(two) : "\n" + one.toString() + "\n" + "does not equal:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
// NOT SAME
|
||||
|
new TestUnit<CTXBase>("Blob.equals() - diff mime_type", new CTXBase(), ctx -> { |
||||
|
Blob one = ctx.attachment1KB; |
||||
|
Blob two = new Blob(); |
||||
|
two.mime_type = "diff"; |
||||
|
two.filename = ctx.attachment1KB.filename; |
||||
|
two.data = ctx.attachment1KB.data; |
||||
|
assert !one.equals(two) : "\n" + one.toString() + "\n" + "equals:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
new TestUnit<CTXBase>("Blob.equals() diff filename", new CTXBase(), ctx -> { |
||||
|
Blob one = ctx.attachment1KB; |
||||
|
Blob two = new Blob(); |
||||
|
two.mime_type = ctx.attachment1KB.mime_type; |
||||
|
two.filename = "diff"; |
||||
|
two.data = ctx.attachment1KB.data; |
||||
|
assert !one.equals(two) : "\n" + one.toString() + "\n" + "equals:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
new TestUnit<CTXBase>("Blob.equals() diff data", new CTXBase(), ctx -> { |
||||
|
Blob one = ctx.attachment1KB; |
||||
|
Blob two = new Blob(); |
||||
|
two.mime_type = ctx.attachment1KB.mime_type; |
||||
|
two.filename = ctx.attachment1KB.filename; |
||||
|
two.data = ctx.attachment1MB.data; |
||||
|
assert !one.equals(two) : "\n" + one.toString() + "\n" + "equals:\n" + two.toString(); |
||||
|
}); |
||||
|
|
||||
|
TestSuite.getDefault().run(); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
|
Loading…
Reference in new issue