mirror of
https://github.com/hendrikschneider/jekyll-analytics
synced 2024-11-15 00:27:23 +00:00
34 lines
No EOL
1.3 KiB
Ruby
34 lines
No EOL
1.3 KiB
Ruby
require_relative "../lib/analytics/GoogleAnalytics.rb"
|
|
require "test/unit"
|
|
|
|
class TestGoogleAnalytics < Test::Unit::TestCase
|
|
def test_init
|
|
assert_raise( ArgumentError ) { GoogleAnalytics.new( {"id" => "123-456"} ) }
|
|
assert_instance_of(GoogleAnalytics, GoogleAnalytics.new( {"id" => "UA-123-456"} ))
|
|
end
|
|
|
|
def test_default_tracking_string
|
|
googleAnalytics = GoogleAnalytics.new( {"id" => "UA-123-456"} )
|
|
assert_equal(googleAnalytics.render(),
|
|
"""
|
|
<!-- Google Analytics -->
|
|
<script>
|
|
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
|
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
|
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
|
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
|
|
|
ga('create', 'UA-123-456', 'auto');
|
|
\tga('send', 'pageview', { 'page': location.pathname + location.search + location.hash});
|
|
\tga('set', 'anonymizeIp', false);
|
|
</script>
|
|
<!-- End Google Analytics -->
|
|
""")
|
|
end
|
|
|
|
def test_anonymize_true
|
|
googleAnalytics = GoogleAnalytics.new( {"id" => "UA-123-456", "anonymizeIp" => true} )
|
|
assert_match(/\('set', 'anonymizeIp', false\);/, googleAnalytics.render())
|
|
end
|
|
|
|
end |