Exemple #1
0
 def test_deps_fetch(self, mock_conf, mock_fetch):
     mock_conf.return_value = self.conf_file
     mock_fetch.side_effect = mock_fetch_package
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path, [{
         'name': 'dep1',
         'url': 'https://github.com/comtihon/dep1',
         'tag': '1.0.0'
     }, {
         'name': 'dep2',
         'url': 'https://github.com/comtihon/dep2',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep1'})
     create(self.tmp_dir, {'<name>': 'dep2'})
     dep_tmp_path = join(self.tmp_dir, 'dep2')
     set_deps(dep_tmp_path, [{
         'name': 'dep3',
         'url': 'https://github.com/comtihon/dep3',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep3'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(['dep1', 'dep2', 'dep3'].sort(),
                      list(builder.packages.keys()).sort())
     self.assertEqual(mock_fetch.call_count, 3)
Exemple #2
0
 def test_link_multiple_deps(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'a_with_dep_a2',
                   'url': 'https://github.com/comtihon/a_with_dep_a2',
                   'tag': '1.0.0'},
                  {'name': 'b_with_no_deps',
                   'url': 'https://github.com/comtihon/b_with_no_deps',
                   'tag': '1.0.0'}
              ])
     # Create dep A with dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a_with_dep_a2'})
     dep_a1_path = join(self.tmp_dir, 'a_with_dep_a2')
     set_deps(dep_a1_path, [{'name': 'a2_with_no_deps',
                             'url': 'https://github.com/comtihon/a2_with_no_deps',
                             'tag': '1.0.0'}])
     # Create dep B (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'b_with_no_deps'})
     # Create dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a2_with_no_deps'})
     # Compile test_project
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     for dep in ['a_with_dep_a2', 'b_with_no_deps', 'a2_with_no_deps']:
         print('Check ' + dep)
         dep_link_ebin = join(pack_path, 'deps', dep, 'ebin')
         self.assertEqual(True, os.path.islink(dep_link_ebin))
         erl = Static.get_erlang_version()
         real_dep = join(self.cache_dir, 'comtihon', dep, '1.0.0', erl, 'ebin')
         self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #3
0
    def test_unit_test_with_deps(self):
        app_dir = join(self.test_dir, 'test_app')
        dep_dir = join(app_dir, 'deps')
        set_deps(
            app_dir,  # root project depends on dep1
            [{
                'name': 'dep1',
                'url': 'https://github.com/comtihon/dep1',
                'tag': '1.0.0'
            }])
        create(dep_dir, {'<name>': 'dep1'})  # dep1 has dep_api:test/0
        with open(join(dep_dir, 'dep1', 'src', 'dep_api.erl'), 'w') as test:
            test.write('''
            -module(dep_api).
            -export([test/0]).
                          
            test() ->
                true.''')
        app_test_dir = join(app_dir, 'test')
        ensure_dir(app_test_dir)
        # dep_api:test/0 is used in unit test of root project
        with open(join(app_test_dir, 'common.erl'), 'w') as test:
            test.write('''
            -module(common).
            -include_lib("eunit/include/eunit.hrl").

            run_test() ->
               ?assertEqual(true, dep_api:test()).''')
        # Compile dep. I only do it in test, as in real life deps will be compiled and linked before running unit.
        dep = Package.from_path(join(dep_dir, 'dep1'))
        self.assertEqual(True, EnotCompiler(dep).compile())
        package = Package.from_path(app_dir)
        compiler = EnotCompiler(package)
        self.assertEqual(True, compiler.unit())
Exemple #4
0
 def test_project_with_test_dep_test_build(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'tag': '1.0.0'}
              ])
     set_deps(pack_path,
              [
                  {'name': 'test_dep',
                   'url': 'https://github.com/comtihon/test_dep',
                   'tag': '1.0.0'}
              ],
              'test_deps')
     create(self.tmp_dir, {'<name>': 'dep'})
     create(self.tmp_dir, {'<name>': 'test_dep'})
     builder = Builder.init_from_path(pack_path)
     builder.populate(include_test_deps=True)
     self.assertEqual(True, builder.build())
     for dep in ['dep', 'test_dep']:
         print('Check ' + dep)
         dep_link_ebin = join(pack_path, 'deps', dep, 'ebin')
         self.assertEqual(True, os.path.islink(dep_link_ebin))
         erl = Static.get_erlang_version()
         real_dep = join(self.cache_dir, 'comtihon', dep, '1.0.0', erl, 'ebin')
         self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #5
0
 def test_link_dep(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path, [{
         'name': 'dep',
         'url': 'https://github.com/comtihon/dep',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep'})
     dep_tmp_path = join(self.tmp_dir, 'dep')
     set_git_url(dep_tmp_path, 'http://github/comtihon/dep')
     set_git_tag(dep_tmp_path, '1.0.0')
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     # dep was added to cache
     self.assertEqual(
         True,
         builder.system_config.cache.exists_local(
             Package.from_path(dep_tmp_path)))
     dep_link_ebin = join(pack_path, 'deps', 'dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     erl = Static.get_erlang_version()
     real_dep = join(self.cache_dir, 'comtihon', 'dep', '1.0.0', erl,
                     'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #6
0
 def test_update_erlang_relink_deps(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'dep_with_no_deps',
                   'url': 'https://github.com/comtihon/dep_with_no_deps',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep_with_no_deps'})
     dep_dir = join(self.tmp_dir, 'dep_with_no_deps')
     set_git_url(dep_dir, 'http://github/comtihon/dep_with_no_deps')
     set_git_tag(dep_dir, '1.0.0')  # This is not needed but pretend we really fetch it from git
     with patch.object(Static, 'get_erlang_version', return_value='18'):
         builder = Builder.init_from_path(pack_path)
         builder.populate()
         self.assertEqual(True, builder.build())
         dep_link_ebin = join(pack_path, 'deps', 'dep_with_no_deps', 'ebin')
         self.assertEqual(True, os.path.islink(dep_link_ebin))
         erl = Static.get_erlang_version()
         real_dep = join(self.cache_dir, 'comtihon', 'dep_with_no_deps', '1.0.0', erl, 'ebin')
         self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     with patch.object(Static, 'get_erlang_version', return_value='22'):
         builder = Builder.init_from_path(pack_path)
         builder.populate()
         self.assertEqual(True, builder.build())
         dep_link_ebin = join(pack_path, 'deps', 'dep_with_no_deps', 'ebin')
         self.assertEqual(True, os.path.islink(dep_link_ebin))
         erl2 = Static.get_erlang_version()
         real_dep = join(self.cache_dir, 'comtihon', 'dep_with_no_deps', '1.0.0', erl2, 'ebin')
         self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     self.assertNotEqual(erl, erl2)
Exemple #7
0
 def test_release_multiple_deps(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'dep_with_dep',
                   'url': 'https://github.com/comtihon/dep_with_dep',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep_with_dep'})
     dep_dir = join(self.tmp_dir, 'dep_with_dep')
     set_deps(dep_dir,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     path = ensure_tool(RelxTool())
     builder.system_config.cache.local_cache.add_tool('relx', path)
     self.assertEqual(True, builder.release())
     lib_dir = join(pack_path, '_rel', 'test_app', 'lib')
     self.assertEqual(True, os.path.exists(join(lib_dir, 'dep-0.0.1')))
     self.assertEqual(True, os.path.exists(join(lib_dir, 'dep_with_dep-0.0.1')))
Exemple #8
0
 def test_update_branch(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_git_url(pack_path, 'http://github/comtihon/test_app')
     set_git_tag(pack_path, '1.0.0')
     set_deps(pack_path,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'branch': 'master'}
              ])
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     dep_link_ebin = join(pack_path, 'deps', 'dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     erl = Static.get_erlang_version()
     real_dep = join(self.cache_dir, 'comtihon', 'dep', 'master-some_hash', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     # lock was set
     locks_file = join(pack_path, 'enot_locks.json')
     self.assertEqual(True, os.path.isfile(locks_file))
     with open(locks_file, 'r') as file:
         locks = json.load(file)
     self.assertEqual('master-some_hash', locks['comtihon/dep'])
     # drop all locks and do upgrade
     with patch.object(LocalCache, 'fetch', side_effect=mock_fetch_commit_3):
         upgrade(pack_path, {})
     self.assertEqual(True, os.path.isfile(locks_file))
     with open(locks_file, 'r') as file:
         locks = json.load(file)
     self.assertEqual('master-some_other_hash', locks['comtihon/dep'])
Exemple #9
0
 def test_deps_conflict(self, mock_conf, mock_fetch):
     mock_conf.return_value = self.conf_file
     mock_fetch.side_effect = mock_fetch_package
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path, [{
         'name': 'dep1',
         'url': 'https://github.com/comtihon/dep1',
         'tag': '1.0.0'
     }, {
         'name': 'dep2',
         'url': 'https://github.com/comtihon/dep2',
         'tag': '1.0.0'
     }, {
         'name': 'dep3',
         'url': 'https://github.com/comtihon/dep3',
         'tag': '2.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep1'})
     create(self.tmp_dir, {'<name>': 'dep2'})
     dep_tmp_path = join(self.tmp_dir, 'dep2')
     set_deps(dep_tmp_path, [{
         'name': 'dep3',
         'url': 'https://github.com/comtihon/dep3',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep3'})
     builder = Builder.init_from_path(pack_path)
     try:  # builder population should fail, because of conflicting dependencies.
         builder.populate()
         populated = True
     except RuntimeError:
         populated = False
     self.assertEqual(False, populated)
Exemple #10
0
 def test_change_branch(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_git_url(pack_path, 'http://github/comtihon/test_app')
     set_git_tag(pack_path, '1.0.0')
     set_deps(pack_path,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'branch': 'master'}
              ])
     dep_dir = join(self.tmp_dir, 'dep')
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     dep_link_ebin = join(pack_path, 'deps', 'dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     erl = Static.get_erlang_version()
     real_dep = join(self.cache_dir, 'comtihon', 'dep', 'master-some_hash', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     # change dep's branch
     set_deps(pack_path,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'branch': 'develop'}
              ])
     switch_branch(dep_dir, 'develop')  # pretend new branch was fetched
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     real_dep = join(self.cache_dir, 'comtihon', 'dep', 'develop-some_hash', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #11
0
def mock_fetch_package(dep: Package):
    test_dir = test.get_test_dir('deps_tests')
    tmp_path = join(os.getcwd(), test_dir, 'tmp')
    if dep.name == 'update_dep' and dep.git_vsn == '1.2.0':
        set_deps(join(tmp_path, dep.name), [{
            'name': 'dep3',
            'url': 'https://github.com/comtihon/dep3',
            'tag': '1.0.0'
        }])
    if dep.name == 'remove_dep' and dep.git_vsn == '1.2.0':
        set_deps(join(tmp_path, dep.name), [])
    dep.update_from_cache(join(tmp_path, dep.name))
Exemple #12
0
 def test_link_with_deps(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path, [{
         'name': 'dep_with_dep',
         'url': 'https://github.com/comtihon/dep_with_dep',
         'tag': '1.0.0'
     }])
     # Create, build and add dep.
     create(self.tmp_dir, {'<name>': 'dep'})
     dep_dep_path = join(self.tmp_dir, 'dep')
     set_git_url(dep_dep_path, 'https://github/comtihon/dep')
     set_git_tag(dep_dep_path, '1.0.0')
     dep_builder = Builder.init_from_path(dep_dep_path)
     # Build dep of dep and add to cache
     dep_builder.populate()
     self.assertEqual(True, dep_builder.build())
     dep_builder.system_config.cache.add_package_local(dep_builder.project)
     self.assertEqual(
         True,
         dep_builder.system_config.cache.exists_local(dep_builder.project))
     # Create, build and add dep with dep: dep
     create(self.tmp_dir, {'<name>': 'dep_with_dep'})
     dep_path = join(self.tmp_dir, 'dep_with_dep')
     set_git_url(dep_path, 'https://github/comtihon/dep_with_dep')
     set_git_tag(dep_path, '1.0.0')
     set_deps(dep_path, [{
         'name': 'dep',
         'url': 'https://github.com/comtihon/dep',
         'tag': '1.0.0'
     }])
     dep_builder = Builder.init_from_path(dep_path)
     dep_builder.populate()
     self.assertEqual(True, dep_builder.build())
     dep_builder.system_config.cache.add_package_local(dep_builder.project)
     self.assertEqual(
         True,
         dep_builder.system_config.cache.exists_local(dep_builder.project))
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     for dep in ['dep_with_dep',
                 'dep']:  # Dep and dep's dep are linked to the project
         print('Check ' + dep)
         dep_link_ebin = join(pack_path, 'deps', dep, 'ebin')
         self.assertEqual(True, os.path.islink(dep_link_ebin))
         erl = Static.get_erlang_version()
         real_dep = join(self.cache_dir, 'comtihon', dep, '1.0.0', erl,
                         'ebin')
         self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #13
0
 def test_change_tag_remove_using_dep(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'dep_with_dep',
                   'url': 'https://github.com/comtihon/dep_with_dep',
                   'tag': '1.0.0'},
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep_with_dep'})
     dep_dir = join(self.tmp_dir, 'dep_with_dep')
     set_git_url(dep_dir, 'http://github/comtihon/dep_with_dep')
     set_git_tag(dep_dir, '1.0.0')
     set_deps(dep_dir,
              [
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     # Check all two deps linked to the project
     dep_link_ebin = join(pack_path, 'deps', 'dep_with_dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     erl = Static.get_erlang_version()
     real_dep = join(self.cache_dir, 'comtihon', 'dep_with_dep', '1.0.0', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     dep_link_ebin = join(pack_path, 'deps', 'dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     real_dep = join(self.cache_dir, 'comtihon', 'dep', '1.0.0', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     # Dep version was changed - dep_with_dep no longer uses dep
     set_deps(pack_path,
              [
                  {'name': 'dep_with_dep',
                   'url': 'https://github.com/comtihon/dep_with_dep',
                   'tag': '1.0.1'},
                  {'name': 'dep',
                   'url': 'https://github.com/comtihon/dep',
                   'tag': '1.0.0'}
              ])
     set_deps(dep_dir, [])
     set_git_tag(dep_dir, '1.0.1')
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     # Check dep is linked to project, as it is used by project
     dep_link_ebin = join(pack_path, 'deps', 'dep_with_dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     real_dep = join(self.cache_dir, 'comtihon', 'dep_with_dep', '1.0.1', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
     dep_link_ebin = join(pack_path, 'deps', 'dep', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
Exemple #14
0
 def test_link_dep(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'dep_with_no_deps',
                   'url': 'https://github.com/comtihon/dep_with_no_deps',
                   'tag': '1.0.0'}
              ])
     create(self.tmp_dir, {'<name>': 'dep_with_no_deps'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(True, builder.build())
     dep_link_ebin = join(pack_path, 'deps', 'dep_with_no_deps', 'ebin')
     self.assertEqual(True, os.path.islink(dep_link_ebin))
     erl = Static.get_erlang_version()
     real_dep = join(self.cache_dir, 'comtihon', 'dep_with_no_deps', '1.0.0', erl, 'ebin')
     self.assertEqual(real_dep, os.readlink(dep_link_ebin))
Exemple #15
0
 def test_add_with_deps(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     # Create test_app with deps: A and B
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path,
              [
                  {'name': 'a_with_dep_a2',
                   'url': 'https://github.com/comtihon/a_with_dep_a2',
                   'tag': '1.0.0'},
                  {'name': 'b_with_no_deps',
                   'url': 'https://github.com/comtihon/b_with_no_deps',
                   'tag': '1.0.0'}
              ])
     # Create dep A with dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a_with_dep_a2'})
     dep_a1_path = join(self.tmp_dir, 'a_with_dep_a2')
     set_deps(dep_a1_path, [{'name': 'a2_with_no_deps',
                             'url': 'https://github.com/comtihon/a2_with_no_deps',
                             'tag': '1.0.0'}])
     set_git_url(dep_a1_path, 'http://github/comtihon/a2_with_no_deps')
     set_git_tag(dep_a1_path, '1.0.0')
     # Create dep B (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'b_with_no_deps'})
     dep_b_path = join(self.tmp_dir, 'b_with_no_deps')
     set_git_url(dep_b_path, 'http://github/comtihon/b_with_no_deps')
     set_git_tag(dep_b_path, '1.0.0')
     # Create dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a2_with_no_deps'})
     dep_a2_path = join(self.tmp_dir, 'a2_with_no_deps')
     set_git_url(dep_a2_path, 'http://github/comtihon/a2_with_no_deps')
     set_git_tag(dep_a2_path, '1.0.0')
     # Compile test_project
     builder = Builder.init_from_path(pack_path)
     self.assertEqual(False, builder.system_config.cache.exists_local(Package.from_path(dep_a1_path)))
     self.assertEqual(False, builder.system_config.cache.exists_local(Package.from_path(dep_b_path)))
     self.assertEqual(False, builder.system_config.cache.exists_local(Package.from_path(dep_a2_path)))
     builder.populate()
     self.assertEqual(True, builder.build())
     self.assertEqual(True, builder.system_config.cache.exists_local(Package.from_path(dep_a1_path)))
     self.assertEqual(True, builder.system_config.cache.exists_local(Package.from_path(dep_b_path)))
     self.assertEqual(True, builder.system_config.cache.exists_local(Package.from_path(dep_a2_path)))
Exemple #16
0
 def test_deps_prefer_newer_new_dep(self, mock_conf, mock_fetch):
     mock_conf.return_value = self.conf_file
     mock_fetch.side_effect = mock_fetch_package
     pack_path = join(self.test_dir, 'test_app')
     set_deps(
         pack_path,
         [
             {
                 'name': 'update_dep',
                 'url': 'https://github.com/comtihon/update_dep',
                 'tag': '1.0.0'
             },  # has no deps in 1.0.0
             {
                 'name': 'dep2',
                 'url': 'https://github.com/comtihon/dep2',
                 'tag': '1.0.0'
             }  # dep2 has update_dep 1.2.0 in deps
         ])
     create(self.tmp_dir, {'<name>': 'dep2'})
     dep_tmp_path = join(self.tmp_dir, 'dep2')
     set_deps(
         dep_tmp_path,
         [{
             'name': 'update_dep',
             'url': 'https://github.com/comtihon/update_dep',
             'tag': '1.2.0'
         }  # has newer version then root
          ])
     create(self.tmp_dir, {
         '<name>': 'update_dep'
     })  # dep3 will be added as a dep in 1.2.0 (see mock_fetch_package)
     create(self.tmp_dir, {'<name>': 'dep3'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(['update_dep', 'dep2', 'dep3'].sort(),
                      list(builder.packages.keys()).sort())
     self.assertEqual('1.0.0', builder.packages['dep2'].git_vsn)
     self.assertEqual('1.2.0', builder.packages['update_dep'].git_vsn)
     self.assertEqual('1.0.0', builder.packages['dep3'].git_vsn)
Exemple #17
0
    def test_release_non_otp_dep(self, mock_conf, _):
        mock_conf.return_value = self.conf_file
        pack_path = join(self.test_dir, 'test_app')
        set_deps(pack_path,
                 [
                     {'name': 'dep',
                      'url': 'https://github.com/comtihon/dep',
                      'tag': '1.0.0'}
                 ])

        create(self.tmp_dir, {'<name>': 'dep'})
        dep_dir = join(self.tmp_dir, 'dep')
        ensure_dir(join(dep_dir, 'src'))
        with open(join(dep_dir, 'src', 'dep.erl'), 'w') as f:
            f.write('''
                    -module(dep).
                    -export([test/0]).
                    test() ->
                        ok.
                    ''')
        with open(join(dep_dir, 'src', 'dep.app.src'), 'w') as f:
            f.write('''
                    {application, dep, [
                      {description, ""},
                      {vsn, "0.0.1"},
                      {registered, []},
                      {applications, {{ app.std_apps + app.apps }}},
                      {modules, {{ modules }}}
                    ]}.
                    ''')
        builder = Builder.init_from_path(pack_path)
        builder.populate()
        self.assertEqual(True, builder.build())
        path = ensure_tool(RelxTool())
        builder.system_config.cache.local_cache.add_tool('relx', path)
        self.assertEqual(True, builder.release())
        lib_dir = join(pack_path, '_rel', 'test_app', 'lib')
        self.assertEqual(True, os.path.exists(join(lib_dir, 'dep-0.0.1')))
Exemple #18
0
 def test_override_disable_prebuild(self, mock_conf, _):
     mock_conf.return_value = self.conf_file
     create(self.tmp_dir, {'<name>': 'project'})
     project_dir = join(self.tmp_dir, 'project')
     set_prebuild(project_dir, [],
                  disable_prebuild=True,
                  override_conf=True)
     # root project has dep, which has some shell prebuild step
     set_deps(project_dir, [{
         'name': 'dep',
         'url': 'https://github.com/comtihon/dep',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep'})
     dep_path = join(self.tmp_dir, 'dep')
     set_git_url(dep_path, 'https://github/comtihon/dep')
     set_git_tag(dep_path, '1.0.0')
     test_file_path = join(project_dir, 'test_file')
     set_prebuild(dep_path, [{'shell': 'echo "test" > ' + test_file_path}])
     builder = Builder.init_from_path(project_dir)
     builder.populate()
     self.assertEqual(True, builder.build())
     self.assertEqual(False, os.path.exists(
         test_file_path))  # no dep's prebuild step was executed
Exemple #19
0
 def test_deps_prefer_newer(self, mock_conf, mock_fetch):
     mock_conf.return_value = self.conf_file
     mock_fetch.side_effect = mock_fetch_package
     pack_path = join(self.test_dir, 'test_app')
     set_deps(pack_path, [{
         'name': 'dep1',
         'url': 'https://github.com/comtihon/dep1',
         'tag': '1.0.0'
     }, {
         'name': 'dep2',
         'url': 'https://github.com/comtihon/dep2',
         'tag': '1.0.0'
     }, {
         'name': 'dep3',
         'url': 'https://github.com/comtihon/dep2',
         'tag': '1.0.0'
     }, {
         'name': 'dep4',
         'url': 'https://github.com/comtihon/dep4',
         'tag': '1.0.0'
     }])
     create(self.tmp_dir, {'<name>': 'dep1'})
     dep_tmp_path = join(self.tmp_dir, 'dep1')
     set_deps(
         dep_tmp_path,
         [{
             'name': 'dep4',
             'url': 'https://github.com/comtihon/dep4',
             'tag': '1.0.1'
         }  # has newer version then root
          ])
     create(self.tmp_dir, {'<name>': 'dep2'})
     dep_tmp_path = join(self.tmp_dir, 'dep2')
     set_deps(
         dep_tmp_path,
         [{
             'name': 'dep3',
             'url': 'https://github.com/comtihon/dep3',
             'tag': '1.1.0'
         }  # has newer version then root
          ])
     create(self.tmp_dir, {'<name>': 'dep3'})
     create(self.tmp_dir, {'<name>': 'dep4'})
     builder = Builder.init_from_path(pack_path)
     builder.populate()
     self.assertEqual(['dep1', 'dep2', 'dep3', 'dep4'].sort(),
                      list(builder.packages.keys()).sort())
     self.assertEqual(
         mock_fetch.call_count,
         6)  # root's deps were fetched, than 2 new deps were fetched
     self.assertEqual('1.0.0', builder.packages['dep1'].git_vsn)
     self.assertEqual('1.0.0', builder.packages['dep2'].git_vsn)
     self.assertEqual('1.1.0', builder.packages['dep3'].git_vsn)
     self.assertEqual('1.0.1', builder.packages['dep4'].git_vsn)
 def test_install_with_deps(self, _, mock_conf, mock_conf_dir, _local):
     mock_conf.return_value = self.conf_file
     mock_conf_dir.return_value = join(self.test_dir, 'conf')
     # Create test_app with deps: A and B
     create(self.test_dir, {'<name>': 'test_app'})
     pack_path = join(self.test_dir, 'test_app')
     set_git_url(pack_path, 'http://github/comtihon/test_app')
     set_git_tag(pack_path, '1.0.0')
     set_deps(pack_path, [{
         'name': 'a_with_dep_a2',
         'url': 'https://github.com/comtihon/a_with_dep_a2',
         'tag': '1.0.0'
     }, {
         'name': 'b_with_no_deps',
         'url': 'https://github.com/comtihon/b_with_no_deps',
         'tag': '1.0.0'
     }])
     test_install_dir = join(self.test_dir, 'test_install')
     modify_config(
         pack_path, {
             'install': [
                 {
                     'shell': 'mkdir ' + test_install_dir
                 },
                 {
                     'shell': 'cp ebin/*.* ' + test_install_dir
                 },
                 {
                     'shell': 'cp deps/*/ebin/*.* ' + test_install_dir
                 },
             ]
         })
     # Create dep A with dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a_with_dep_a2'})
     dep_a1_path = join(self.tmp_dir, 'a_with_dep_a2')
     set_deps(dep_a1_path, [{
         'name': 'a2_with_no_deps',
         'url': 'https://github.com/comtihon/a2_with_no_deps',
         'tag': '1.0.0'
     }])
     set_git_url(dep_a1_path, 'http://github/comtihon/a2_with_no_deps')
     set_git_tag(dep_a1_path, '1.0.0')
     # Create dep B (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'b_with_no_deps'})
     dep_b_path = join(self.tmp_dir, 'b_with_no_deps')
     set_git_url(dep_b_path, 'http://github/comtihon/b_with_no_deps')
     set_git_tag(dep_b_path, '1.0.0')
     # Create dep A2 (in tmp, as if we download them from git)
     create(self.tmp_dir, {'<name>': 'a2_with_no_deps'})
     dep_a2_path = join(self.tmp_dir, 'a2_with_no_deps')
     set_git_url(dep_a2_path, 'http://github/comtihon/a2_with_no_deps')
     set_git_tag(dep_a2_path, '1.0.0')
     # Compile test_project, add to local cache
     self.__add_to_local(pack_path)
     self.assertEqual(True, Controller().install('comtihon/test_app', None))
     self.assertEqual(True, os.path.isdir(test_install_dir))
     installed = os.listdir(test_install_dir)
     expected = [
         'a2_with_no_deps.app', 'a2_with_no_deps_app.beam',
         'a2_with_no_deps_sup.beam', 'a_with_dep_a2.app',
         'a_with_dep_a2_app.beam', 'a_with_dep_a2_sup.beam',
         'b_with_no_deps.app', 'b_with_no_deps_app.beam',
         'b_with_no_deps_sup.beam', 'test_app.app', 'test_app_app.beam',
         'test_app_sup.beam'
     ]
     self.assertEqual(expected, sorted(installed))