-
Notifications
You must be signed in to change notification settings - Fork 943
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update: 添加JsonAdaptor的测试代码,更新pom文件中测试用的JDBC部分
- Loading branch information
Showing
8 changed files
with
247 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
test/org/nutz/dao/test/normal/mysql/MysqlJsonAdaptorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package org.nutz.dao.test.normal.mysql; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import java.math.BigDecimal; | ||
|
||
import org.junit.Test; | ||
import org.nutz.dao.Cnd; | ||
import org.nutz.dao.test.DaoCase; | ||
import org.nutz.json.Json; | ||
import org.nutz.json.JsonFormat; | ||
|
||
public class MysqlJsonAdaptorTest extends DaoCase { | ||
|
||
@Override | ||
protected void before() { | ||
if (!dao.meta().isMySql()) { | ||
return; | ||
} | ||
dao.create(MysqlJsonAdaptorTestBean.class, true); | ||
} | ||
|
||
@Test | ||
public void adapotor() { | ||
if (!dao.meta().isMySql()) { | ||
return; | ||
} | ||
|
||
MysqlJsonAdaptorTestBean testBean = new MysqlJsonAdaptorTestBean(); | ||
StudentResult result = new StudentResult(); | ||
result.setPhysics(new BigDecimal("100")); | ||
testBean.setNoneAdaptor(result); | ||
testBean.setJsonAdaptor(result); | ||
testBean.setJsonCompactAdaptor(result); | ||
testBean.setJsonTidyAdaptor(result); | ||
|
||
int insertId = dao.insert(testBean).getId(); | ||
|
||
org.nutz.dao.entity.Record record = dao.fetch("t_mysql_json_adaptor_test_bean", Cnd.where("id","=",insertId)); | ||
// mysql 在保存 json 格式字段的时候会自动格式化该字段的值 | ||
// mariadb 的话就没问题 | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("noneAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("noneAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("jsonAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.compact()), record.getString("jsonCompactAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("jsonTidyAdaptor")); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
test/org/nutz/dao/test/normal/mysql/MysqlJsonAdaptorTestBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package org.nutz.dao.test.normal.mysql; | ||
|
||
import org.nutz.dao.entity.annotation.ColDefine; | ||
import org.nutz.dao.entity.annotation.ColType; | ||
import org.nutz.dao.entity.annotation.Id; | ||
import org.nutz.dao.entity.annotation.Table; | ||
import org.nutz.dao.impl.jdbc.mysql.MysqlJsonAdaptor; | ||
import org.nutz.dao.impl.jdbc.mysql.MysqlJsonCompactAdaptor; | ||
import org.nutz.dao.impl.jdbc.mysql.MysqlJsonTidyAdaptor; | ||
|
||
@Table("t_mysql_json_adaptor_test_bean") | ||
public class MysqlJsonAdaptorTestBean { | ||
|
||
@Id | ||
private int id; | ||
|
||
@ColDefine(customType = "json", type = ColType.MYSQL_JSON) | ||
private StudentResult noneAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.MYSQL_JSON, adaptor = MysqlJsonAdaptor.class) | ||
private StudentResult jsonAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.MYSQL_JSON, adaptor = MysqlJsonCompactAdaptor.class) | ||
private StudentResult jsonCompactAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.MYSQL_JSON, adaptor = MysqlJsonTidyAdaptor.class) | ||
private StudentResult jsonTidyAdaptor; | ||
|
||
public int getId() { | ||
return id; | ||
} | ||
|
||
public void setId(int id) { | ||
this.id = id; | ||
} | ||
|
||
public StudentResult getNoneAdaptor() { | ||
return noneAdaptor; | ||
} | ||
|
||
public void setNoneAdaptor(StudentResult noneAdaptor) { | ||
this.noneAdaptor = noneAdaptor; | ||
} | ||
|
||
public StudentResult getJsonAdaptor() { | ||
return jsonAdaptor; | ||
} | ||
|
||
public void setJsonAdaptor(StudentResult jsonAdaptor) { | ||
this.jsonAdaptor = jsonAdaptor; | ||
} | ||
|
||
public StudentResult getJsonCompactAdaptor() { | ||
return jsonCompactAdaptor; | ||
} | ||
|
||
public void setJsonCompactAdaptor(StudentResult jsonCompactAdaptor) { | ||
this.jsonCompactAdaptor = jsonCompactAdaptor; | ||
} | ||
|
||
public StudentResult getJsonTidyAdaptor() { | ||
return jsonTidyAdaptor; | ||
} | ||
|
||
public void setJsonTidyAdaptor(StudentResult jsonTidyAdaptor) { | ||
this.jsonTidyAdaptor = jsonTidyAdaptor; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
test/org/nutz/dao/test/normal/psql/PsqlJsonAdaptorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package org.nutz.dao.test.normal.psql; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import java.math.BigDecimal; | ||
|
||
import org.junit.Test; | ||
import org.nutz.dao.Cnd; | ||
import org.nutz.dao.test.DaoCase; | ||
import org.nutz.json.Json; | ||
import org.nutz.json.JsonFormat; | ||
|
||
public class PsqlJsonAdaptorTest extends DaoCase { | ||
|
||
@Override | ||
protected void before() { | ||
if (!dao.meta().isPostgresql()) { | ||
return; | ||
} | ||
dao.create(PsqlJsonAdaptorTestBean.class, true); | ||
} | ||
|
||
@Test | ||
public void adapotor() { | ||
if (!dao.meta().isPostgresql()) { | ||
return; | ||
} | ||
|
||
PsqlJsonAdaptorTestBean testBean = new PsqlJsonAdaptorTestBean(); | ||
org.nutz.dao.test.normal.psql.StudentResult result = new StudentResult(); | ||
result.setPhysics(new BigDecimal("100")); | ||
testBean.setNoneAdaptor(result); | ||
testBean.setJsonAdaptor(result); | ||
testBean.setJsonCompactAdaptor(result); | ||
testBean.setJsonTidyAdaptor(result); | ||
|
||
int insertId = dao.insert(testBean).getId(); | ||
|
||
org.nutz.dao.entity.Record record = dao.fetch("t_psql_json_adaptor_test_bean", Cnd.where("id","=",insertId)); | ||
// 设置成 jsonb 格式的时候会自动格式化该字段的值 | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("noneAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("noneAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("jsonAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.compact()), record.getString("jsonCompactAdaptor")); | ||
assertEquals(Json.toJson(result, JsonFormat.tidy()), record.getString("jsonTidyAdaptor")); | ||
} | ||
} |
68 changes: 68 additions & 0 deletions
68
test/org/nutz/dao/test/normal/psql/PsqlJsonAdaptorTestBean.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
package org.nutz.dao.test.normal.psql; | ||
|
||
import org.nutz.dao.entity.annotation.ColDefine; | ||
import org.nutz.dao.entity.annotation.ColType; | ||
import org.nutz.dao.entity.annotation.Id; | ||
import org.nutz.dao.entity.annotation.Table; | ||
import org.nutz.dao.impl.jdbc.psql.PsqlJsonAdaptor; | ||
import org.nutz.dao.impl.jdbc.psql.PsqlJsonCompactAdaptor; | ||
import org.nutz.dao.impl.jdbc.psql.PsqlJsonTidyAdaptor; | ||
|
||
@Table("t_psql_json_adaptor_test_bean") | ||
public class PsqlJsonAdaptorTestBean { | ||
|
||
@Id | ||
private int id; | ||
|
||
@ColDefine(customType = "jsonb", type = ColType.PSQL_JSON) | ||
private StudentResult noneAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.PSQL_JSON, adaptor = PsqlJsonAdaptor.class) | ||
private StudentResult jsonAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.PSQL_JSON, adaptor = PsqlJsonCompactAdaptor.class) | ||
private StudentResult jsonCompactAdaptor; | ||
|
||
@ColDefine(customType = "json", type = ColType.PSQL_JSON, adaptor = PsqlJsonTidyAdaptor.class) | ||
private StudentResult jsonTidyAdaptor; | ||
|
||
public int getId() { | ||
return id; | ||
} | ||
|
||
public void setId(int id) { | ||
this.id = id; | ||
} | ||
|
||
public org.nutz.dao.test.normal.psql.StudentResult getNoneAdaptor() { | ||
return noneAdaptor; | ||
} | ||
|
||
public void setNoneAdaptor(StudentResult noneAdaptor) { | ||
this.noneAdaptor = noneAdaptor; | ||
} | ||
|
||
public StudentResult getJsonAdaptor() { | ||
return jsonAdaptor; | ||
} | ||
|
||
public void setJsonAdaptor(StudentResult jsonAdaptor) { | ||
this.jsonAdaptor = jsonAdaptor; | ||
} | ||
|
||
public StudentResult getJsonCompactAdaptor() { | ||
return jsonCompactAdaptor; | ||
} | ||
|
||
public void setJsonCompactAdaptor(StudentResult jsonCompactAdaptor) { | ||
this.jsonCompactAdaptor = jsonCompactAdaptor; | ||
} | ||
|
||
public StudentResult getJsonTidyAdaptor() { | ||
return jsonTidyAdaptor; | ||
} | ||
|
||
public void setJsonTidyAdaptor(StudentResult jsonTidyAdaptor) { | ||
this.jsonTidyAdaptor = jsonTidyAdaptor; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters