def create_new_entry(project): new_change = (random.randint(0, 2) == 5) if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change( project=project, author=author, message=revision.message, ) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source( project.repository, revision_sha=revision.sha, patch=patch) return create_new_build(change, source, patch, project)
def create_new_entry(project): new_change = (random.randint(0, 2) == 5) if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change( project=project, author=author, message=revision.message, ) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source(project.repository, revision_sha=revision.sha, patch=patch) return create_new_build(change, source, patch, project)
def add(project, revision): """ Similar to gen, except uses an existing revision for the project :return: A new build that's been saved. """ author = mock.author() change = create_new_change( project=project, author=author, message=revision.message ) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source( project.repository, revision_sha=revision.sha, patch=patch) return create_new_build(change, source, patch, project)
def create_new_entry(project): new_change = (random.randint(0, 2) == 5) if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change( project=project, author=author, message=revision.message, ) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source( project.repository, revision_sha=revision.sha, patch=patch) date_started = datetime.utcnow() build = mock.build( author=change.author, project=project, source=source, message=change.message, result=Result.unknown, status=Status.in_progress, date_started=date_started, ) db.session.add(ItemStat(item_id=build.id, name='lines_covered', value='5')) db.session.add(ItemStat(item_id=build.id, name='lines_uncovered', value='5')) db.session.add(ItemStat(item_id=build.id, name='diff_lines_covered', value='5')) db.session.add(ItemStat(item_id=build.id, name='diff_lines_uncovered', value='5')) db.session.commit() for x in xrange(0, random.randint(1, 3)): job = mock.job( build=build, change=change, status=Status.in_progress, ) db.session.commit() if patch: mock.file_coverage(project, job, patch) for step in JobStep.query.filter(JobStep.job == job): logsource = LogSource( job=job, project=job.project, step=step, name=step.label, ) db.session.add(logsource) db.session.commit() offset = 0 for x in xrange(30): lc = mock.logchunk(source=logsource, offset=offset) db.session.commit() offset += lc.size return build
def create_new_entry(project): new_change = (random.randint(0, 2) == 1) if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change( project=project, author=author, message=revision.message, ) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source(project.repository, revision_sha=revision.sha, patch=patch) date_started = datetime.utcnow() build = mock.build( author=change.author, project=project, source=source, message=change.message, result=Result.unknown, status=Status.in_progress, date_started=date_started, ) db.session.commit() publish_build_update(build) for x in xrange(0, random.randint(1, 3)): job = mock.job( build=build, change=change, status=Status.in_progress, ) db.session.commit() publish_job_update(job) for step in JobStep.query.filter(JobStep.job == job): logsource = LogSource( job=job, project=job.project, step=step, name=step.label, ) db.session.add(logsource) db.session.commit() offset = 0 for x in xrange(30): lc = mock.logchunk(source=logsource, offset=offset) db.session.commit() offset += lc.size return build
def create_new_entry(project): new_change = (random.randint(0, 2) == 1) if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change( project=project, author=author, message=revision.message, ) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None print patch source = mock.source( project.repository, revision_sha=revision.sha, patch=patch) date_started = datetime.utcnow() build = mock.build( author=change.author, project=project, source=source, message=change.message, result=Result.unknown, status=Status.in_progress, date_started=date_started, ) publish_build_update(build) for x in xrange(3): job = mock.job( build=build, change=change, status=Status.in_progress, ) publish_job_update(job) logsource = LogSource( job=job, project=job.project, name='console', ) db.session.add(logsource) db.session.commit() offset = 0 for x in xrange(30): lc = mock.logchunk(source=logsource, offset=offset) db.session.commit() offset += lc.size return build
def create_new_entry(project): new_change = random.randint(0, 2) == 5 if not new_change: try: change = Change.query.all()[0] except IndexError: new_change = True if new_change: author = mock.author() revision = mock.revision(project.repository, author) change = create_new_change(project=project, author=author, message=revision.message) else: change.date_modified = datetime.utcnow() db.session.add(change) revision = mock.revision(project.repository, change.author) if random.randint(0, 1) == 1: patch = mock.patch(project) else: patch = None source = mock.source(project.repository, revision_sha=revision.sha, patch=patch) date_started = datetime.utcnow() build = mock.build( author=change.author, project=project, source=source, message=change.message, result=Result.failed if random.randint(0, 3) == 1 else Result.unknown, status=Status.in_progress, date_started=date_started, ) build_task = fixtures.create_task( task_id=build.id, task_name="sync_build", data={"kwargs": {"build_id": build.id.hex}} ) db.session.add(ItemStat(item_id=build.id, name="lines_covered", value="5")) db.session.add(ItemStat(item_id=build.id, name="lines_uncovered", value="5")) db.session.add(ItemStat(item_id=build.id, name="diff_lines_covered", value="5")) db.session.add(ItemStat(item_id=build.id, name="diff_lines_uncovered", value="5")) db.session.commit() for x in xrange(0, random.randint(1, 3)): job = mock.job(build=build, change=change, status=Status.in_progress, result=build.result) fixtures.create_task( task_id=job.id.hex, parent_id=build_task.task_id, task_name="sync_job", data={"kwargs": {"job_id": job.id.hex}}, ) db.session.commit() if patch: mock.file_coverage(project, job, patch) for step in JobStep.query.filter(JobStep.job == job): logsource = LogSource(job=job, project=job.project, step=step, name=step.label) db.session.add(logsource) db.session.commit() offset = 0 for x in xrange(30): lc = mock.logchunk(source=logsource, offset=offset) db.session.commit() offset += lc.size return build