123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- goog.provide('goog.html.testing');
- goog.setTestOnly();
- goog.require('goog.html.SafeHtml');
- goog.require('goog.html.SafeScript');
- goog.require('goog.html.SafeStyle');
- goog.require('goog.html.SafeStyleSheet');
- goog.require('goog.html.SafeUrl');
- goog.require('goog.html.TrustedResourceUrl');
- goog.require('goog.testing.mockmatchers.ArgumentMatcher');
- goog.html.testing.newSafeHtmlForTest = function(html, opt_dir) {
- return goog.html.SafeHtml.createSafeHtmlSecurityPrivateDoNotAccessOrElse(
- html, (opt_dir == undefined ? null : opt_dir));
- };
- goog.html.testing.newSafeScriptForTest = function(script) {
- return goog.html.SafeScript.createSafeScriptSecurityPrivateDoNotAccessOrElse(
- script);
- };
- goog.html.testing.newSafeStyleForTest = function(style) {
- return goog.html.SafeStyle.createSafeStyleSecurityPrivateDoNotAccessOrElse(
- style);
- };
- goog.html.testing.newSafeStyleSheetForTest = function(styleSheet) {
- return goog.html.SafeStyleSheet
- .createSafeStyleSheetSecurityPrivateDoNotAccessOrElse(styleSheet);
- };
- goog.html.testing.newSafeUrlForTest = function(url) {
- return goog.html.SafeUrl.createSafeUrlSecurityPrivateDoNotAccessOrElse(url);
- };
- goog.html.testing.newTrustedResourceUrlForTest = function(url) {
- return goog.html.TrustedResourceUrl
- .createTrustedResourceUrlSecurityPrivateDoNotAccessOrElse(url);
- };
- goog.html.testing.matchSafeHtml = function(expected) {
- if (expected instanceof goog.html.SafeHtml) {
- expected = goog.html.SafeHtml.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.SafeHtml.unwrap(actual) == expected;
- });
- };
- goog.html.testing.matchSafeScript = function(expected) {
- if (expected instanceof goog.html.SafeScript) {
- expected = goog.html.SafeScript.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.SafeScript.unwrap(actual) == expected;
- });
- };
- goog.html.testing.matchSafeStyle = function(expected) {
- if (expected instanceof goog.html.SafeStyle) {
- expected = goog.html.SafeStyle.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.SafeStyle.unwrap(actual) == expected;
- });
- };
- goog.html.testing.matchSafeStyleSheet = function(expected) {
- if (expected instanceof goog.html.SafeStyleSheet) {
- expected = goog.html.SafeStyleSheet.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.SafeStyleSheet.unwrap(actual) == expected;
- });
- };
- goog.html.testing.matchSafeUrl = function(expected) {
- if (expected instanceof goog.html.SafeUrl) {
- expected = goog.html.SafeUrl.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.SafeUrl.unwrap(actual) == expected;
- });
- };
- goog.html.testing.matchTrustedResourceUrl = function(expected) {
- if (expected instanceof goog.html.TrustedResourceUrl) {
- expected = goog.html.TrustedResourceUrl.unwrap(expected);
- }
- return new goog.testing.mockmatchers.ArgumentMatcher(function(actual) {
- return goog.html.TrustedResourceUrl.unwrap(actual) == expected;
- });
- };
|