require 'formula'
class Mongodb < Formula
homepage 'http://www.mongodb.org/'
url 'http://downloads.mongodb.org/src/mongodb-src-r2.4.9.tar.gz'
sha1 '3aa495cf32769a09ee9532827391892d96337d6b'
bottle do
sha1 '04d49071102d86ac06f35ed9e4c855a677d97c68' => :mavericks
sha1 '2ee3ed1b44777ea740da87b952acdadf19084bd4' => :mountain_lion
sha1 'b4898545634c7015093036c260dca69bc96fa5b8' => :lion
end
devel do
url 'http://downloads.mongodb.org/src/mongodb-src-r2.5.5.tar.gz'
sha1 '4827f3da107174a3cbb1f5b969c7f597ca09b4f8'
end
head 'https://github.com/mongodb/mongo.git'
def patches
if build.stable?
[
# Fix Clang v8 build failure from build warnings and -Werror
'https://github.com/mongodb/mongo/commit/be4bc7.patch'
]
end
end
depends_on 'scons' => :build
depends_on 'openssl' => :optional
def install
# mongodb currently can't build with libc++; this should be fixed in
# 2.6, but can't be backported to the current stable release.
ENV.cxx += ' -stdlib=libstdc++' if ENV.compiler == :clang && MacOS.version >= :mavericks
scons = Formula.factory('scons').opt_prefix/'bin/scons'
args = ["--prefix=#{prefix}", "-j#{ENV.make_jobs}"]
args << '--64' if MacOS.prefer_64_bit?
args << "--cc=#{ENV.cc}"
args << "--cxx=#{ENV.cxx}"
if build.with? 'openssl'
args << '--ssl'
args << "--extrapathdyn=#{Formula.factory('openssl').opt_prefix}"
end
system scons, 'install', *args
(prefix+'mongod.conf').write mongodb_conf
mv bin/'mongod', prefix
(bin/'mongod').write <<-EOS.undent
#!/usr/bin/env ruby
ARGV << '--config' << '#{etc}/mongod.conf' unless ARGV.find { |arg|
arg =~ /^\s*\-\-config$/ or arg =~ /^\s*\-f$/
}
exec "#{prefix}/mongod", *ARGV
EOS
etc.install prefix+'mongod.conf'
(var+'mongodb').mkpath
(var+'log/mongodb').mkpath
end
def mongodb_conf; <<-EOS.undent
# Store data in #{var}/mongodb instead of the default /data/db
dbpath = #{var}/mongodb
# Append logs to #{var}/log/mongodb/mongo.log
logpath = #{var}/log/mongodb/mongo.log
logappend = true
# Only accept local connections
bind_ip = 127.0.0.1
EOS
end
plist_options :manual => "mongod"
def plist; <<-EOS.undent
'use strict';
describe('ngStyle', function() {
var element;
afterEach(function() {
dealoc(element);
});
it('should set', inject(function($rootScope, $compile) {
element = $compile('<div ng-style="{height: \'40px\'}"></div>')($rootScope);
$rootScope.$digest();
expect(element.css('height')).toEqual('40px');
}));
it('should silently ignore undefined style', inject(function($rootScope, $compile) {
element = $compile('<div ng-style="myStyle"></div>')($rootScope);
$rootScope.$digest();
expect(element.hasClass('ng-exception')).toBeFalsy();
}));
describe('preserving styles set before and after compilation', function() {
var scope, preCompStyle, preCompVal, postCompStyle, postCompVal, element;
beforeEach(inject(function($rootScope, $compile) {
preCompStyle = 'width';
preCompVal = '300px';
postCompStyle = 'height';
postCompVal = '100px';
element = jqLite('<div ng-style="styleObj"></div>');
element.css(preCompStyle, preCompVal);
jqLite(document.body).append(element);
$compile(element)($rootScope);
scope = $rootScope;
scope.styleObj = {'margin-top': '44px'};
scope.$apply();
element.css(postCompStyle, postCompVal);
}));
afterEach(function() {
element.remove();
});
it('should not mess up stuff after compilation', function() {
element.css('margin', '44px');
expect(element.css(preCompStyle)).toBe(preCompVal);
expect(element.css('margin-top')).toBe('44px');
expect(element.css(postCompStyle)).toBe(postCompVal);
});
it('should not mess up stuff after $apply with no model changes', function() {
element.css('padding-top', '33px');
scope.$apply();
expect(element.css(preCompStyle)).toBe(preCompVal);
expect(element.css('margin-top')).toBe('44px');
expect(element.css(postCompStyle)).toBe(postCompVal);
expect(element.css('padding-top')).toBe('33px');
});
it('should not mess up stuff after $apply with non-colliding model changes', function() {
scope.styleObj = {'padding-top': '99px'};
scope.$apply();
expect(element.css(preCompStyle)).toBe(preCompVal);
expect(element.css('margin-top')).not.toBe('44px');
expect(element.css('padding-top')).toBe('99px');
expect(element.css(postCompStyle)).toBe(postCompVal);
});
it('should overwrite original styles after a colliding model change', function() {
scope.styleObj = {'height': '99px', 'width': '88px'};
scope.$apply();
expect(element.css(preCompStyle)).toBe('88px');
expect(element.css(postCompStyle)).toBe('99px');
scope.styleObj = {};
scope.$apply();
expect(element.css(preCompStyle)).not.toBe('88px');
expect(element.css(postCompStyle)).not.toBe('99px');
});
});
});