menu

ダミーデータ作成ライブラリ「Java Faker」の使い方~全ダミーデータの出力結果を解説~

公開日:2019年03月26日 カテゴリー:Java

テストデータを作成するとき、名前=山田太郎って入れていませんか?
システム開発あるあるですが、山田太郎さんばかりでは、テストデータとして信頼性にかけしまいます。
そんなときは、ダミーデータ作成ライブラリを使って、実際のデータに近い値を作成したりします。

そこで、今回は弊社でもありがたく利用させていただいているJavaのライブラリ、
「DiUS/java-faker」をご紹介します。

https://github.com/DiUS/java-faker

基本的な使い方から、存在している作成メソッドをほぼ全て実行してみました。
ポケモン、ドラゴンボール、ハリーポッター、ヨーダのセリフなど
気になるデータの出力結果も紹介していますので、良ければ最後までお付き合いください。

Java Fakerの使い方

まずは基本的な使い方の説明です。

1.ライブラリの読込

Mavenプロジェクトの場合は、pom.xmlのタグに以下を追加します。

Gradleプロジェクトの場合は、build.gradleに以下を追加します。

これで準備完了です。

2.Fakerを利用します

基本的な使い方は”new”して、関数を呼ぶだけです。
氏名を5つ取得してみます。

【結果】

fullName:藤田 美咲
fullName:新井 亮
fullName:坂本 輝
fullName:酒井 明日香
fullName:吉田 彩

簡単にダミーの名前を作成することできました。

 

良く使うダミーデータ

名前の生成

名前のダミーデータは良く利用します。
基本的な使い方で紹介したフルネーム以外に、苗字、名前を分けて取得することが出来ます。

【結果】

fullName:伊藤 結衣
lastName:田中
firstName:奏太

名前は日本人の名前を生成してくれるので、使いやすいですね。
もちろん「山田 太郎」さんもランダムで出てきます。

 

住所の生成

住所のダミーデータも良く利用します。

【結果】

zipCode:118-8645
stateAbbr:2
state:沖縄県
cityName:増田市
streetAddress:606 太一Avenue
secondaryAddress:Suite 789
繋げてみた住所:968-3075山梨県新翔市青木町0377 諒Course Apt. 732

それぞれの値に関連性がないので、おかしな住所になってしまいます。
ただ、精度を求めないのであれば、十分利用できるデータを作成することができます。

ちなみに「streetAddress(true)」の引数にtrueを渡すと、
streetAddress() + secondaryAddress() を生成することができます。
繋げた住所ではこれを利用しています。

 

ランダムな数字の生成

乱数の生成も簡単にできます。

【結果】

nextInt(5, 20):12
nextInt(15):7
nextBoolean:true
randomNumber(10, true):8867879735
randomNumber(10, false):5631846532
digits(5):64958

値を指定する場合は、”random”を利用し、桁を指定する場合は、”number”を利用します。
フラグの生成なんかも便利ですね。

 

メールアドレスの生成

メールアドレスも生成することができます。

【結果】

safeEmailAddress:直樹.今井@example.com
safeEmailAddress:mjs_203@example.com

「safeEmailAddress」を利用すると”@example.com”でアドレスが生成されます。
引数に文字列を指定すると、アカウント部分に設定されます。
引数を指定しない場合は日本語のおかしなアドレスが出来てしまいました。

サンプルで利用している「fakeValuesService.bothify」も非常に便利です。
? が文字に置き換わり、# が数値に置き換わるので、ランダムな文字列を作るときに利用します。

メールアドレスは、他に「emailAddress」でも生成も出来ますが、”@yahoo.com”など
実在するアドレスが生成される可能性があるため、「safeEmailAddress」の利用をお勧めします。

 

単語の生成

単語の生成もできます。
が、日本語の対応はされてません。
「Lorem ipsum(ロレム・イプサム)」という有名なダミーテキストが基になっているようなので、
ラテン語?の文字が返って来ます。

【結果】

word:sapiente
words:[est, sed, velit, repellendus, ut]

日本語の単語が欲しいところですが、
単純に文字列を入れたいだけであればこれでも十分ですね。

 

文章の生成

文章を生成する場合はこれらを利用します。

【結果】

sentence:Cupiditate minima aut et officia voluptas dolorum soluta exercitationem ut.
paragraph:Nihil ut dolore. Eos dolorem aut rerum corporis quo aut. Voluptatibus voluptatum tempore libero voluptas et. Exercitationem et molestiae aliquam fugit.
fixedString:Et non autem iste nihil corrup

内部で単語をつないているだけですが、
メモ項目などに適当な文字を入れたい場合には役立ちそうですね。

 

利用できそうなダミーデータ

他に利用できそうなものもいくつかPickUpしてみます。

【結果】

company.name:和田銀行株式会社
university.name:四国藤井音楽大学
internet.password:4s2enzx1
phoneNumber.cellPhone:080-2936-1071
phoneNumber.phoneNumber:01953-4-5659
pokemon.name:ガルーラ

電話番号は実在する可能性もあるので、使い方は要注意です。

 

日本語にできるデータ

日本語で取得できるダミーデータはソースを見れば良くわかります。

https://github.com/DiUS/java-faker/blob/master/src/main/resources/ja.yml

住所、名前、大学、会社、ポケモンだけであまり日本語対応されていないですが、
この内容を踏まえて利用すれば十分要件は満たせるのではないでしょうか。

 

(ほぼ)全てのメソッドを実行した結果

実際どんなデータが出力されるかは、動かしてみた方が早いです。
そこで、動かせそうなメソッドを全て呼び出してみました。
使えそうなものがあれば、お試しください。

ちなみに”pokemon”は良く利用しています。

address

address().fullAddress:542 藤井Flats, 東村田郡, 32 396-7125
address().city:大樹区
address().cityName:健区
address().cityPrefix:小
address().citySuffix:村
address().country:Trinidad and Tobago
address().countryCode:ME
address().firstName:悠
address().lastName:西村
address().latitude:58.052421
address().longitude:94.738867
address().secondaryAddress:Suite 149
address().state:福島県
address().stateAbbr:22
address().streetAddress:2415 松尾Loop
address().streetAddress(true):071 美羽Throughway Suite 185
address().streetAddress(false):5464 渡部Wall
address().streetAddressNumber:122
address().streetName:結衣Lane
address().streetPrefix:xx
address().streetSuffix:Tunnel
address().timeZone:Pacific/Tongatapu
address().zipCode:881-0696

artist

artist().name():Munch

avatar

avatar().image():https://s3.amazonaws.com/uifaces/faces/twitter/bolzanmarco/128.jpg

ancient

ancient().god():Hermes
ancient().hero():Briseis
ancient().primordial():Nesoi
ancient().titan():Themis

app

app().author():株式会社小林保険
app().name():Tres-Zap
app().version():0.80

beer

beer().hop():Bullion
beer().malt():Munich
beer().name():Yeti Imperial Stout
beer().style():Light Lager
beer().yeast():3942 – Belgian Wheat

book

book().author():藤井 翼
book().genre():Essay
book().publisher():Salt Publishing
book().title():The Soldier’s Art

bool

bool().bool():true

business

business().creditCardExpiry():2013-9-12
business().creditCardNumber():1228-1221-1221-1431
business().creditCardType():maestro

cat

cat().breed():Somali
cat().name():Poppy
cat().registry():American Cat Fanciers Association

chuckNorris

chuckNorris().fact():When a bug sees Chuck Norris, it flees screaming in terror, and then immediately self-destructs to avoid being roundhouse-kicked.

code

code().asin():B0000D1DW1
code().ean13():2275272961108
code().ean8():92938618
code().gtin13():0904670043087
code().gtin8():30111387
code().imei():495687015153576
code().isbn10():1933612347
code().isbn10(true):1-937290-15-8
code().isbn10(false):1284007057
code().isbn13():9781039601635
code().isbn13(true):978-1-17-286188-0
code().isbn13(false):9780964746619
code().isbnGroup():1
code().isbnGs1():978
code().isbnRegistrant():921317-06

color

color().name():violet

commerce

commerce().color():white
commerce().department():Industrial
commerce().material():Wooden
commerce().price():90.50
commerce().price(1100):10.60
commerce().productName():Lightweight Aluminum Plate
commerce().promotionCode():StellarPromotion720625
commerce().promotionCode(10):CoolPromotion3571144962

company

company().bs():innovate plug-and-play synergies
company().buzzword():maximized
company().catchPhrase():Polarised maximized moratorium
company().industry():Defense & Space
company().logo():https://pigment.github.io/fake-logos/logos/medium/color/8.png
company().name():合同会社柴田通信
company().profession():judge
company().suffix():株式会社
company().url():www.xn--ehquz469an0i25ep1bivze4h.name

crypto

crypto().md5():8bd51c376d6a36b8a9f74b4dcdf49a0a
crypto().sha1():68fe9ec99d3ab12278d739f069e99daaadd765d5
crypto().sha256():328763c6eac985b7d63c1dd9e8f3f29db749355f5a350240c636f0d95243dfc5
crypto().sha512():f824e79504fce1ee01b42fe95414edca6b6d88c01dea6c3a94de145d3459f1630339e50beed79e04037a7b854051616a56a73e938a483f79f7901d55227e7a47

currency

currency().code():BAM
currency().name():CFA Franc BEAC

date

date().between(new Date()new Date()).toString():Mon Mar 25 10:59:16 JST 2019
date().birthday().toString():Tue May 17 06:08:15 JST 1983
date().birthday(2030).toString():Tue Aug 06 23:34:39 JST 1996
date().future(10TimeUnit.DAYS).toString():Sun Mar 31 17:57:47 JST 2019
date().past(10TimeUnit.DAYS).toString():Mon Mar 25 02:04:35 JST 2019

demographic

demographic().demonym():Bosniak
demographic().educationalAttainment():Bachelor’s degree
demographic().maritalStatus():Divorced
demographic().race():Native Hawaiian or Other Pacific Islander
demographic().sex():Male

dog

dog().age():senior
dog().breed():Samoyed
dog().coatLength():wire
dog().gender():female
dog().memePhrase():big ol’ pupper
dog().name():Ruby
dog().size():extra large
dog().sound():ruff

dragonBall

dragonBall().character():Mr. Popo

ドラゴンボールのキャラは、残念ながら日本語対応していません…
聞いたことないキャラ名も結構でてきます。

educator

educator().campus():Mallowpond Campus
educator().course():Associate Degree in Health Science

esports

esports().event():League All Stars
esports().game():Overwatch
esports().league():IEM
esports().player():pasha
esports().team():NaVi

file

file().extension():json
file().fileName():aut_itaque\quo.wav
file().mimeType():message/imdn+xml

finance

finance().bic():WPIFNR0Y43V
finance().creditCard():6011-6107-4573-3816
finance().creditCard(CreditCardType.VISA):4653-5018-4917-2266
finance().iban():HR1558031216978368324

food

food().ingredient():Lotus Root
food().measurement():1 gallon
food().spice():Biryani Spice Mix

friends

friends().character():Ross Geller
friends().location():Ralph Lauren
friends().quote():It was summer… and it was hot. Rachel was there… A lonely grey couch…”OH LOOK!” cried Ned, and then the kingdom was his forever. The End.

funnyName

funnyName().name():Owen Money

gameOfThrones

gameOfThrones().character():Togg Joth
gameOfThrones().city():Tolos
gameOfThrones().dragon():Dreamfyre
gameOfThrones().house():Goodbrother of Orkmont
gameOfThrones().quote():The things I do for love.

hacker

hacker().abbreviation():XSS
hacker().adjective():online
hacker().ingverb():compressing
hacker().noun():hard drive
hacker().verb():override

harryPotter

harryPotter().book():Harry Potter and the Order of the Phoenix
harryPotter().character():Trevor
harryPotter().location():Diagon Alley
harryPotter().quote():We could all have been killed – or worse, expelled.

hipster

hipster().word():migas

hitchhikersGuideToTheGalaxy

hitchhikersGuideToTheGalaxy().character():Barry Manilow
hitchhikersGuideToTheGalaxy().location():Café Lou
hitchhikersGuideToTheGalaxy().marvinQuote():Here I am, brain the size of a planet, and they tell me to take you up to the bridge. Call that job satisfaction? ‘Cos I don’t.
hitchhikersGuideToTheGalaxy().planet():Allosimanius Syneca
hitchhikersGuideToTheGalaxy().quote():It’s only half completed, I’m afraid – we haven’t even finished burying the artificial dinosaur skeletons in the crust yet.
hitchhikersGuideToTheGalaxy().specie():Nanites
hitchhikersGuideToTheGalaxy().starship():Billion Year Bunker

hobbit

hobbit().character():Bofur
hobbit().location():Green Dragon Inn
hobbit().quote():The road goes ever on and on
hobbit().thorinsCompany():Balin

howIMetYourMother

howIMetYourMother().catchPhrase():Just… O.K?
howIMetYourMother().character():Lily Aldrin
howIMetYourMother().highFive():Door Five
howIMetYourMother().quote():Revenge fantasies never work out the way you want.

idNumber

idNumber().invalid():000-99-9905
idNumber().invalidSvSeSsn():225692+4274
idNumber().ssnValid():245-57-3973
idNumber().validSvSeSsn():320409-1718

internet

internet().avatar():https://s3.amazonaws.com/uifaces/faces/twitter/quailandquasar/128.jpg
internet().domainName():xn--elq416k.net
internet().domainSuffix():co
internet().domainWord():xn--ues438a
internet().emailAddress():大翔.藤原@yahoo.com
internet().emailAddress(“hogehoge”):hogehoge@gmail.com
internet().image():http://lorempixel.com/1366/768/fashion/
internet().image(200, 200, false, “hoge”):http://lorempixel.com/200/200/cats/hoge
internet().ipV4Address():113.6.78.163
internet().ipV4Cidr():180.201.150.65/6
internet().ipV6Address():8d8f:6d8a:7e90:0bd8:2bc9:2554:cff9:f0b5
internet().ipV6Cidr():5330:21f7:c521:8aed:216c:2639:2a16:08d3/16
internet().macAddress():74:b5:c8:69:66:d0
internet().macAddress(“40”):40:3d:b3:03:a0:af
internet().password():oyrgtifau
internet().password(8, 16):4uksf2btc
internet().password(8, 16, true):piNOiQ9oA
internet().password(8, 16, true, true):cd!%KeO*QhK@r
internet().privateIpV4Address():172.30.62.76
internet().publicIpV4Address():79.194.132.160
internet().safeEmailAddress():悠太.石井@example.com
internet().safeEmailAddress(“fugafuga”):fugafuga@example.com
internet().slug():mollitia_quae
internet().slug(Arrays.asList(“aaa, ” + “bbb, ” + “ccc”), “##”)aaa##bbb##ccc
internet().url():www.xn—xn--i8s518j-1n6s.name
internet().uuid():6b993c5d-172c-4419-a88e-780097d95270

job

job().field():Mining
job().keySkills():Leadership
job().position():Technician
job().seniority():Central
job().title():Central Orchestrator

leagueOfLegends

leagueOfLegends().champion():Poppy
leagueOfLegends().location():Demacia
leagueOfLegends().masteries():Greenfather’s Gift
leagueOfLegends().quote():Welcome to the League of Draven.
leagueOfLegends().rank():Diamond I
leagueOfLegends().summonerSpell():Mark

lebowski

lebowski().actor():John Goodman
lebowski().character():The Dude
lebowski().quote():Yeah, well, that’s just, like, your opinion, man.

lordOfTheRings

lordOfTheRings().character():Tom Bombadil
lordOfTheRings().location():Gorgoroth

lorem

lorem().character():f
lorem().character(true):h
lorem().characters():4eerzc8vwstfdcdxqaa84sfu2e6dbx0za5ze3in6q5a84ilv2qb9vaojbb4a29s472aulyso4xm2xutm8y0t3wrizgwv8656a6bjjvo921tadksdvqqro9uidnsfcao25178hg71ow44mc40fj89nc238rmfnbth3t06m3hgibevcyfb7hjwvz2eedlbp77mg9857eyn4c3kqpq6x3mjpsox28pmp7f482fwryloz68b93o60tk0lcqikgv1n7h
lorem().characters(true):dryvkjwvl9ak38zjagoss27p03qm01rp5hwux66g1zivtc4xhlj3et51nt6aygrzumlbq9lc4iqto9rj9f6brxya71mog2rq6a0jogxrukdjee5tpeyfnfevwrgm9fn831293atw7ybs9rsjy2ejyettyvs2miy37v2lijr0415019hom7vorer865p8r82r1goju02jzzqn7sw57pgtahjc3lv2k8pm9cpz6hd86i3avvha746e9pvlgvbywjc
lorem().characters(5):mfbw2
lorem().characters(5, true):4AW79
lorem().characters(1, 5):vgl8
lorem().characters(1, 5, true):Upcw
lorem().fixedString(50):Et consequatur architecto.Veniam non omnis quaerat
lorem().paragraph():Blanditiis et mollitia nihil itaque natus ut. Qui nulla consequatur est consequatur quos. Non recusandae eum. Voluptatem quia deserunt ea iure asperiores molestiae eum. Et iusto alias laboriosam dolorem consequatur hic ratione.
lorem().paragraph(5):Sint est molestiae nihil. Ut omnis cupiditate velit velit voluptatem. Est est itaque non doloremque quia. Dolorem assumenda sit qui. Ab quas fuga.
lorem().paragraphs(5):Dolores sed nobis temporibus molestiae dolor ipsa deleniti. Accusantium qui dolores praesentium maiores. Autem id dicta aliquam eligendi aliquid et autem. Maiores harum quam et et occaecati aperiam qui., Assumenda in consequuntur sequi dolorem dolorem iste rerum. Omnis soluta qui voluptates mollitia sed sapiente nemo. Illum incidunt enim officiis soluta possimus consequuntur., Possimus libero modi ducimus. Iusto vel dolorum voluptate temporibus ut dolorem excepturi. Natus est ipsam commodi repellat dolor., Molestiae quisquam dolores natus neque rerum. Dolore non adipisci nihil minima quam. Cupiditate non voluptas fugiat. Debitis quo nobis dignissimos porro velit deleniti aut. Fugiat itaque repellendus iure quas., Repellat quia non soluta placeat maxime aut. Sit pariatur perferendis. Sunt harum alias aut perferendis perferendis id. Aut totam et mollitia sint et cupiditate.
lorem().sentence():Dolores libero voluptatem deleniti rerum nulla.
lorem().sentence(5):Omnis id dignissimos maxime et aut iusto numquam.
lorem().sentence(5, 10):Architecto itaque quisquam voluptates et eum ut perferendis veniam laudantium quae aut tempore.
lorem().sentences(10):Facere quas velit et aut aperiam eum., Quo voluptates molestiae., Qui aut provident., Voluptatem commodi ipsum ipsa magnam incidunt quia eos., Sit delectus veniam., Aut enim similique cum., Maxime corrupti nisi officia accusamus praesentium., Porro quae rerum dolor vel ipsa et., Dolore repellat enim aspernatur., Ratione doloremque adipisci doloremque repellendus.
lorem().word():quo
lorem().words():animi, suscipit, numquam
lorem().words(10):perspiciatis, ratione, iure, delectus, minima, sed, sed, beatae, sed, eos

matz

matz().quote():I didn’t work hard to make Ruby perfect for everyone, because you feel differently from me. No language can be perfect for everyone. I tried to make Ruby perfect for me, but maybe it’s not perfect for you. The perfect language for Guido van Rossum is probably Python.

music

music().chord():Fm7
music().instrument():Piano
music().key():Eb

name

name().name():阿部 太郎
name().fullName():山下 誠
name().firstName():恵
name().lastName():吉田
name().username():瑛太.加藤
name().nameWithMiddle():大地 大地 竹内
name().title():Customer Integration Supervisor
name().prefix():Miss
name().suffix():PhD

number

number().digit():2
number().digits(10):1004932191
number().numberBetween(10, 30):17
number().numberBetween(10000000000000L, 10000000000100L):10000000000074
number().randomDigit():6
number().randomDigitNotZero():7
number().randomDouble(2, 5, 10):6.18
number().randomNumber():40899668
number().randomNumber(10, true):2136815540

options

options().nextElement(new String[] {“aa”, “bb”}):aa

overwatch

overwatch().hero():Winston
overwatch().location():Ecopoint: Antarctica
overwatch().quote():Hammer Down!

phoneNumber

phoneNumber().cellPhone():070-2454-8058
phoneNumber().phoneNumber():0326-82-9171

pokemon

pokemon().location():ふたごじま
pokemon().name():マルマイン

rickAndMorty

rickAndMorty().character():Mr. Goldenfold
rickAndMorty().location():Dwarf Terrace-9
rickAndMorty().quote():Oh, I’m sorry Morty, are you the scientist or are you the kid who wanted to get laid?

robin

robin().quote():Holy Harshin

rockBand

rockBand().name():Deep Purple

shakespeare

shakespeare().asYouLikeItQuote():The fool doth think he is wise, but the wise man knows himself to be a fool.
shakespeare().hamletQuote():Neither a borrower nor a lender be; For loan oft loses both itself and friend, and borrowing dulls the edge of husbandry.
shakespeare().kingRichardIIIQuote():So wise so young, they say, do never live long.
shakespeare().romeoAndJulietQuote():Good Night, Good night! Parting is such sweet sorrow, that I shall say good night till it be morrow.

slackEmoji

slackEmoji().activity()::art:
slackEmoji().celebration()::dizzy:
slackEmoji().custom()::rage3:
slackEmoji().emoji()::sushi:
slackEmoji().foodAndDrink()::grapes:
slackEmoji().nature()::turtle:
slackEmoji().objectsAndSymbols()::fax:
slackEmoji().people()::shit:
slackEmoji().travelAndPlaces()::tokyo_tower:

space

space().agency():Swedish National Space Board
space().agencyAbbreviation():ISRO
space().company():Virgin Galactic
space().constellation():Aquarius
space().distanceMeasurement():53megaparsecs
space().galaxy():Milky Way
space().meteorite():Kaidun
space().moon():Phobos
space().nasaSpaceCraft():Enterprise
space().nebula():Ring Nebula
space().planet():Uranus
space().star():Sirius A
space().starCluster():Koposov I

starTrek

starTrek().character():Kes
starTrek().location():Delta Quadrant
starTrek().specie():El-Aurian
starTrek().villain():Borg Queen

stock

stock().nsdqSymbol():WDFC
stock().nyseSymbol():ZBH

superhero

superhero().descriptor():Warbird
superhero().name():Blizzard
superhero().power():Energy Manipulation
superhero().prefix():Ultra
superhero().suffix():Brain

team

team().creature():cattle
team().name():千葉県 giants
team().sport():football
team().state():大分県

twinPeaks

twinPeaks().character():Johnny Horne
twinPeaks().location():Timber Falls Motel
twinPeaks().quote():Black as midnight on a moonless night.

university

university().name():四国小山大学
university().prefix():九州
university().suffix():芸術大学

weather

weather().description():Thunder falls
weather().temperatureCelsius():32°C
weather().temperatureCelsius(1, 5):2°C
weather().temperatureFahrenheit():43°F
weather().temperatureFahrenheit(1, 5):5°F

witcher

witcher().character():Addario Bach
witcher().location():Tegamo
witcher().monster():Pale Widow
witcher().quote():You get what you get and be happy with it
witcher().school():Manticore

yoda

yoda().quote():At an end your rule is, and not short enough it was!

zelda

zelda().character():Daphnes Nohansen Hyrule
zelda().game():Phantom Hourglass

以上で解説は終了です。
 
 
☆☆ウィズテクノロジーでは、大阪、東京を中心としたシステム開発を行っております
システムのご相談はもとより、一緒に働くエンジニアもお待ちしております。☆☆