Skip to content

Instantly share code, notes, and snippets.

@nictrix
Last active June 17, 2021 16:46
Show Gist options
  • Save nictrix/29926ae2985c90954427 to your computer and use it in GitHub Desktop.
Save nictrix/29926ae2985c90954427 to your computer and use it in GitHub Desktop.
hipchat_emoticons.to_slack
require 'csv'
require 'open-uri'
team_name = ARGV[0]
#source.csv instructions
#download from: https://www.hipchat.com/emoticons (you'll need to get the URLs manually)
#
#csv format (example file):
#allthethings,https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
emoticons = CSV.read('source.csv')
general_script =<<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="http://localhost:9292" />
<title>__NAME__</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">__NAME__</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>https://__TEAM__.slack.com/customize/emoji</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=emojiname</td>
<td>__NAME__</td>
</tr>
<tr>
<td>click</td>
<td>id=modedata</td>
<td></td>
</tr>
<tr>
<td>type</td>
<td>id=emojiimg</td>
<td>__FILE__</td>
</tr>
<tr>
<td>clickAndWait</td>
<td>css=input.btn.btn_primary</td>
<td></td>
</tr>
</tbody></table>
</body>
</html>
EOF
test_cases = ''
emoticons.each do |emoticon|
emoticon_basename = File.basename(emoticon.last)
File.open("/tmp/#{emoticon_basename}", "wb") do |saved_file|
open(emoticon.last, "rb") do |read_file|
saved_file.write(read_file.read)
end
end
output = general_script
output = output.gsub('__NAME__',emoticon.first)
output = output.gsub('__FILE__',"/tmp/#{emoticon_basename}")
output = output.gsub('__TEAM__',team_name)
File.open("#{emoticon.first}.html", 'w') {|f| f.write(output) }
test_cases+="\n<tr><td rowspan='1' colspan='3'>#{emoticon.first}</td></tr>"
test_cases+="\n<tr><td><a href='#{emoticon.first}.html'>#{emoticon.first}</a></td></tr>"
end
test_case =<<EOF
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type" />
<title>Test Suite</title>
</head>
<body>
<table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium"><tbody>
<tr><td><b>Test Suite</b></td></tr>
__TEST_CASES__
</tbody></table>
</body>
</html>
EOF
test_case = test_case.gsub('__TEST_CASES__',test_cases)
File.open('hipchat_test_suite.html', 'w') {|f| f.write(test_case) }
#open hipchat_test_suite.html from SeleniumIDE (Firefox Plugin will work) and run the entire test suite with a browser already logged into slack
allthethings https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
android https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
areyoukiddingme https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
arrington https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
arya https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ashton https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
atlassian https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
awesome https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
awthanks https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
aww https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
awwyiss https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
awyeah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
badass https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
badjokeeel https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
badpokerface https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
badtime https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bamboo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
basket https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
beer https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bicepleft https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bicepright https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bitbucket https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
boom https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
borat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
branch https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bumble https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
bunny https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cadbury https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cake https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
candycorn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
carl https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
caruso https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
catchemall https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ceilingcat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
celeryman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cereal https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cerealspit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
challengeaccepted https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
chef https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
chewie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
chocobunny https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
chompy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
chucknorris https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
clarence https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
coffee https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
confluence https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
content https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
continue https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cookie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
cornelius https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
corpsethumb https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
crucible https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
daenerys https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
dance https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
dealwithit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
derp https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
disappear https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
disapproval https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
doge https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
doh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
donotwant https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
dosequis https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
downvote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
drevil https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
drool https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ducreux https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
dumb https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
evilburns https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
excellent https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
facepalm https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
failed https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
feelsbadman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
feelsgoodman https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
finn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fireworks https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
firstworldproblems https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fisheye https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fonzie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
foreveralone https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
forscale https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
freddie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fry https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ftfy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fu https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fuckyeah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
fwp https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
gangnamstyle https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
gates https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ghost https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
giggity https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
goldstar https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
goodnews https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
greenbeer https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
grumpycat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
gtfo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
haha https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
haveaseat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
heart https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
heygirl https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
hipchat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
hipster https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
hodor https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
huehue https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
hugefan https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
huh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ilied https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
indeed https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
iseewhatyoudidthere https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
itsatrap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jackie https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jaime https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jake https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jira https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jobs https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
joffrey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
jonsnow https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
kennypowers https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
krang https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
kwanzaa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
lincoln https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
lol https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
lolwut https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
megusta https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
meh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
menorah https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
mindblown https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
motherofgod https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ned https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
nextgendev https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
nice https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ninja https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
noidea https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
notbad https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
nothingtodohere https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
notit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
notsureif https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
notsureifgusta https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
obama https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ohcrap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ohgodwhy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
ohmy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
okay https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
omg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
orly https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
paddlin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
pbr https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
philosoraptor https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
pingpong https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
pirate https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
pokerface https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
poo https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
present https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
pumpkin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
rageguy https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
rainicorn https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
rebeccablack https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
reddit https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
rockon https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
romney https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
rudolph https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
sadpanda https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
sadtroll https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
salute https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
samuel https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
santa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
sap https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
scumbag https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
seomoz https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
shamrock https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
shrug https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
skyrim https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
sourcetree https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
standup https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
stare https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
stash https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
success https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
successful https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
sweetjesus https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
tableflip https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
taco https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
taft https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
tea https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
thatthing https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
theyregreat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
toodamnhigh https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
tree https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
troll https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
truestory https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
trump https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
turkey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
twss https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
tyrion https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
tywin https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
unacceptable https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
unknown https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
upvote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
vote https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
waiting https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
washington https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
wat https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
whoa https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
whynotboth https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
wtf https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
yey https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
yodawg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
youdontsay https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
yougotitdude https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
yuno https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
zoidberg https://dujrsrsgsd3nh.cloudfront.net/img/emoticons/[email protected]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment