'use strict';
describe("markups", function() {
  it('should translate {{}} in text', inject(function($rootScope, $compile) {
    var element = $compile('
hello {{name}}!
')($rootScope)
    expect(sortedHtml(element)).toEqual('hello !
');
    $rootScope.name = 'Misko';
    $rootScope.$digest();
    expect(sortedHtml(element)).toEqual('hello Misko!
');
  }));
  it('should translate {{}} in terminal nodes', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.$digest();
    expect(sortedHtml(element).replace(' selected="true"', '')).
      toEqual('');
    $rootScope.name = 'Misko';
    $rootScope.$digest();
    expect(sortedHtml(element).replace(' selected="true"', '')).
      toEqual('');
  }));
  it('should translate {{}} in attributes', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    expect(element.attr('ng:bind-attr')).toEqual('{"src":"http://server/{{path}}.png"}');
    $rootScope.path = 'a/b';
    $rootScope.$digest();
    expect(element.attr('src')).toEqual("http://server/a/b.png");
  }));
  describe('OPTION value', function() {
    beforeEach(function() {
      this.addMatchers({
        toHaveValue: function(expected){
          this.message = function() {
            return 'Expected "' + this.actual.html() + '" to have value="' + expected + '".';
          };
          var value;
          htmlParser(this.actual.html(), {
            start:function(tag, attrs){
              value = attrs.value;
            },
            end:noop,
            chars:noop
          });
          return trim(value) == trim(expected);
        }
      });
    });
    it('should populate value attribute on OPTION', inject(function($rootScope, $compile) {
      var element = $compile('')($rootScope)
      expect(element).toHaveValue('abc');
    }));
    it('should ignore value if already exists', inject(function($rootScope, $compile) {
      var element = $compile('')($rootScope)
      expect(element).toHaveValue('abc');
    }));
    it('should set value even if newlines present', inject(function($rootScope, $compile) {
      var element = $compile('')($rootScope)
      expect(element).toHaveValue('\nabc\n');
    }));
    it('should set value even if self closing HTML', inject(function($rootScope, $compile) {
      // IE removes the \n from option, which makes this test pointless
      if (msie) return;
      var element = $compile('')($rootScope)
      expect(element).toHaveValue('\n');
    }));
  });
  it('should bind href', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    expect(sortedHtml(element)).toEqual('');
  }));
  it('should bind disabled', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.isDisabled = false;
    $rootScope.$digest();
    expect(element.attr('disabled')).toBeFalsy();
    $rootScope.isDisabled = true;
    $rootScope.$digest();
    expect(element.attr('disabled')).toBeTruthy();
  }));
  it('should bind checked', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.isChecked = false;
    $rootScope.$digest();
    expect(element.attr('checked')).toBeFalsy();
    $rootScope.isChecked=true;
    $rootScope.$digest();
    expect(element.attr('checked')).toBeTruthy();
  }));
  it('should bind selected', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    jqLite(document.body).append(element)
    $rootScope.isSelected=false;
    $rootScope.$digest();
    expect(element.children()[1].selected).toBeFalsy();
    $rootScope.isSelected=true;
    $rootScope.$digest();
    expect(element.children()[1].selected).toBeTruthy();
  }));
  it('should bind readonly', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.isReadonly=false;
    $rootScope.$digest();
    expect(element.attr('readOnly')).toBeFalsy();
    $rootScope.isReadonly=true;
    $rootScope.$digest();
    expect(element.attr('readOnly')).toBeTruthy();
  }));
  it('should bind multiple', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.isMultiple=false;
    $rootScope.$digest();
    expect(element.attr('multiple')).toBeFalsy();
    $rootScope.isMultiple='multiple';
    $rootScope.$digest();
    expect(element.attr('multiple')).toBeTruthy();
  }));
  it('should bind src', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    $rootScope.url = 'http://localhost/';
    $rootScope.$digest();
    expect(element.attr('src')).toEqual('http://localhost/');
  }));
  it('should bind href and merge with other attrs', inject(function($rootScope, $compile) {
    var element = $compile('')($rootScope)
    expect(sortedHtml(element)).toEqual('');
  }));
  it('should bind Text with no Bindings', inject(function($compile) {
    var $rootScope;
    function newScope (){
      return $rootScope = angular.injector('ng').get('$rootScope');
    }
    forEach(['checked', 'disabled', 'multiple', 'readonly', 'selected'], function(name) {
      var element = $compile('')(newScope())
      expect(element.attr('ng:bind-attr')).toBe('{"' + name +'":"some"}');
      $rootScope.$digest();
      expect(element.attr(name)).toBe(name);
      dealoc(element);
    });
    var element = $compile('')(newScope())
    $rootScope.$digest();
    expect(sortedHtml(element)).toEqual('');
    dealoc(element);
    var element = $compile('')(newScope())
    $rootScope.$digest();
    expect(sortedHtml(element)).toEqual('');
    dealoc(element);
  }));
  it('should Parse Text With No Bindings', inject(function($rootScope, $compile) {
    var parts = parseBindings("a");
    expect(parts.length).toBe(1);
    expect(parts[0]).toBe("a");
    expect(binding(parts[0])).toBeFalsy();
  }));
  it('should Parse Empty Text', inject(function($rootScope, $compile) {
    var parts = parseBindings("");
    expect(parts.length).toBe(1);
    expect(parts[0]).toBe("");
    expect(binding(parts[0])).toBeFalsy();
  }));
  it('should Parse Inner Binding', inject(function($rootScope, $compile) {
    var parts = parseBindings("a{{b}}C");
    expect(parts.length).toBe(3);
    expect(parts[0]).toBe("a");
    expect(binding(parts[0])).toBeFalsy();
    expect(parts[1]).toBe("{{b}}");
    expect(binding(parts[1])).toBe("b");
    expect(parts[2]).toBe("C");
    expect(binding(parts[2])).toBeFalsy();
  }));
  it('should Parse Ending Binding', inject(function($rootScope, $compile) {
    var parts = parseBindings("a{{b}}");
    expect(parts.length).toBe(2);
    expect(parts[0]).toBe("a");
    expect(binding(parts[0])).toBeFalsy();
    expect(parts[1]).toBe("{{b}}");
    expect(binding(parts[1])).toBe("b");
  }));
  it('should Parse Begging Binding', inject(function($rootScope, $compile) {
    var parts = parseBindings("{{b}}c");
    expect(parts.length).toBe(2);
    expect(parts[0]).toBe("{{b}}");
    expect(binding(parts[0])).toBe("b");
    expect(parts[1]).toBe("c");
    expect(binding(parts[1])).toBeFalsy();
  }));
  it('should Parse Loan Binding', inject(function($rootScope, $compile) {
    var parts = parseBindings("{{b}}");
    expect(parts.length).toBe(1);
    expect(parts[0]).toBe("{{b}}");
    expect(binding(parts[0])).toBe("b");
  }));
  it('should Parse Two Bindings', inject(function($rootScope, $compile) {
    var parts = parseBindings("{{b}}{{c}}");
    expect(parts.length).toBe(2);
    expect(parts[0]).toBe("{{b}}");
    expect(binding(parts[0])).toBe("b");
    expect(parts[1]).toBe("{{c}}");
    expect(binding(parts[1])).toBe("c");
  }));
  it('should Parse Two Bindings With Text In Middle', inject(function($rootScope, $compile) {
    var parts = parseBindings("{{b}}x{{c}}");
    expect(parts.length).toBe(3);
    expect(parts[0]).toBe("{{b}}");
    expect(binding(parts[0])).toBe("b");
    expect(parts[1]).toBe("x");
    expect(binding(parts[1])).toBeFalsy();
    expect(parts[2]).toBe("{{c}}");
    expect(binding(parts[2])).toBe("c");
  }));
  it('should Parse Multiline', inject(function($rootScope, $compile) {
    var parts = parseBindings('"X\nY{{A\nB}}C\nD"');
    expect(binding('{{A\nB}}')).toBeTruthy();
    expect(parts.length).toBe(3);
    expect(parts[0]).toBe('"X\nY');
    expect(parts[1]).toBe('{{A\nB}}');
    expect(parts[2]).toBe('C\nD"');
  }));
  it('should Has Binding', inject(function($rootScope, $compile) {
    expect(hasBindings(parseBindings("{{a}}"))).toBe(true);
    expect(hasBindings(parseBindings("a"))).toBeFalsy();
    expect(hasBindings(parseBindings("{{b}}x{{c}}"))).toBe(true);
  }));
});