-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support customized timezone for date (#107)
Change-Id: I9814239e101e1424fc6d247a9984fcaaedbcca5c
- Loading branch information
Showing
14 changed files
with
270 additions
and
5 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
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
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
75 changes: 75 additions & 0 deletions
75
src/test/java/com/baidu/hugegraph/loader/test/unit/DateUtilTest.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,75 @@ | ||
/* | ||
* Copyright 2017 HugeGraph Authors | ||
* | ||
* 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 com.baidu.hugegraph.loader.test.unit; | ||
|
||
import org.junit.Test; | ||
|
||
import com.baidu.hugegraph.loader.util.DateUtil; | ||
import com.baidu.hugegraph.testutil.Assert; | ||
|
||
public class DateUtilTest { | ||
|
||
@Test | ||
public void testCheckTimeZone() { | ||
Assert.assertTrue(DateUtil.checkTimeZone("JST")); | ||
Assert.assertTrue(DateUtil.checkTimeZone("UTC")); | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT")); | ||
// GMT+00:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT+0")); | ||
// GMT-00:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT-0")); | ||
// GMT+09:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT+9:00")); | ||
// GMT+10:30 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT+10:30")); | ||
// GMT-04:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT-0400")); | ||
// GMT+08:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT+8")); | ||
// GMT-13:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT-13")); | ||
// GMT-13:59 | ||
Assert.assertTrue(DateUtil.checkTimeZone("GMT+13:59")); | ||
// NOTE: valid time zone IDs (see TimeZone.getAvailableIDs()) | ||
// GMT-08:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("America/Los_Angeles")); | ||
// GMT+09:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("Japan")); | ||
// GMT+01:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("Europe/Berlin")); | ||
// GMT+04:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("Europe/Moscow")); | ||
// GMT+08:00 | ||
Assert.assertTrue(DateUtil.checkTimeZone("Asia/Singapore")); | ||
|
||
Assert.assertFalse(DateUtil.checkTimeZone("JPY")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("USD")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("UTC+8")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("UTC+09:00")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("+09:00")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("-08:00")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("-1")); | ||
Assert.assertFalse(DateUtil.checkTimeZone("GMT+10:-30")); | ||
// hours is 0-23 only | ||
Assert.assertFalse(DateUtil.checkTimeZone("GMT+24:00")); | ||
// minutes 00-59 only | ||
Assert.assertFalse(DateUtil.checkTimeZone("GMT+13:60")); | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Define schema | ||
schema.propertyKey("name").asText().ifNotExist().create(); | ||
schema.propertyKey("birth").asDate().ifNotExist().create(); | ||
schema.propertyKey("city").asText().ifNotExist().create(); | ||
|
||
schema.vertexLabel("person").properties("name", "birth", "city").primaryKeys("name").ifNotExist().create(); |
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,21 @@ | ||
{ | ||
"vertices": [ | ||
{ | ||
"label": "person", | ||
"input": { | ||
"type": "${source_type}", | ||
"path": "${store_path}/vertex_person_birth_date.csv", | ||
"format": "CSV", | ||
"header": ["name", "birth", "city"], | ||
"charset": "UTF-8", | ||
"date_format": "yyyy-MM-dd HH:mm:ss", | ||
"time_zone": "GMT+0" | ||
}, | ||
"field_mapping": { | ||
"name": "name", | ||
"birth": "birth", | ||
"city": "city" | ||
} | ||
} | ||
] | ||
} |
22 changes: 22 additions & 0 deletions
22
src/test/resources/customized_timezone_gmt0/struct_hdfs.json
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,22 @@ | ||
{ | ||
"vertices": [ | ||
{ | ||
"label": "person", | ||
"input": { | ||
"type": "${source_type}", | ||
"path": "${store_path}/vertex_person_birth_date.csv", | ||
"core_site_path": "src/test/resources/hdfs_with_core_site_path/core-site.xml", | ||
"format": "CSV", | ||
"header": ["name", "birth", "city"], | ||
"charset": "UTF-8", | ||
"date_format": "yyyy-MM-dd HH:mm:ss", | ||
"time_zone": "GMT+0" | ||
}, | ||
"field_mapping": { | ||
"name": "name", | ||
"birth": "birth", | ||
"city": "city" | ||
} | ||
} | ||
] | ||
} |
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,6 @@ | ||
// Define schema | ||
schema.propertyKey("name").asText().ifNotExist().create(); | ||
schema.propertyKey("birth").asDate().ifNotExist().create(); | ||
schema.propertyKey("city").asText().ifNotExist().create(); | ||
|
||
schema.vertexLabel("person").properties("name", "birth", "city").primaryKeys("name").ifNotExist().create(); |
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,20 @@ | ||
{ | ||
"vertices": [ | ||
{ | ||
"label": "person", | ||
"input": { | ||
"type": "${source_type}", | ||
"path": "${store_path}/vertex_person_birth_date.csv", | ||
"format": "CSV", | ||
"header": ["name", "birth", "city"], | ||
"charset": "UTF-8", | ||
"date_format": "yyyy-MM-dd HH:mm:ss" | ||
}, | ||
"field_mapping": { | ||
"name": "name", | ||
"birth": "birth", | ||
"city": "city" | ||
} | ||
} | ||
] | ||
} |
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,21 @@ | ||
{ | ||
"vertices": [ | ||
{ | ||
"label": "person", | ||
"input": { | ||
"type": "${source_type}", | ||
"path": "${store_path}/vertex_person_birth_date.csv", | ||
"core_site_path": "src/test/resources/hdfs_with_core_site_path/core-site.xml", | ||
"format": "CSV", | ||
"header": ["name", "birth", "city"], | ||
"charset": "UTF-8", | ||
"date_format": "yyyy-MM-dd HH:mm:ss" | ||
}, | ||
"field_mapping": { | ||
"name": "name", | ||
"birth": "birth", | ||
"city": "city" | ||
} | ||
} | ||
] | ||
} |