Package org.jmock

Examples of org.jmock.Expectations.oneOf()


        final PackageFeed packageFeed = createPackageFeed("FirstFeed", createPackageEntry("id", "1.2.3"));
        final PackageFeed emptyFeed = createPackageFeed("SecondFeed");
        Expectations expectations = new Expectations();
        expectations.atLeast(0).of(nugetClient).getUrl();
        expectations.will(returnValue(""));
        expectations.oneOf(nugetClient).getPackageCount(expectations.with(false));
        expectations.will(returnValue(1));
        expectations.oneOf(nugetClient).getPackages(
                expectations.with((String) null),
                expectations.with((String) null),
                expectations.with(1),
View Full Code Here


        Expectations expectations = new Expectations();
        expectations.atLeast(0).of(nugetClient).getUrl();
        expectations.will(returnValue(""));
        expectations.oneOf(nugetClient).getPackageCount(expectations.with(false));
        expectations.will(returnValue(1));
        expectations.oneOf(nugetClient).getPackages(
                expectations.with((String) null),
                expectations.with((String) null),
                expectations.with(1),
                expectations.with((String) null),
                expectations.with(0));
View Full Code Here

        PackageSource packageSource = context.mock(PackageSource.class);
        Nupkg nupkg = context.mock(Nupkg.class);

        Expectations expectations = new Expectations();
        expectations.oneOf(packageSource).getPackages("packageId");
        expectations.will(returnValue(Arrays.asList(nupkg)));

        expectations.oneOf(nupkg).getVersion();
        expectations.will(returnValue(Version.parse("1.2.3")));
View Full Code Here

        Expectations expectations = new Expectations();
        expectations.oneOf(packageSource).getPackages("packageId");
        expectations.will(returnValue(Arrays.asList(nupkg)));

        expectations.oneOf(nupkg).getVersion();
        expectations.will(returnValue(Version.parse("1.2.3")));

        context.checking(expectations);
        //WHEN
        @SuppressWarnings("unchecked")
View Full Code Here

        GetRemotePackageFeedAction action = new GetRemotePackageFeedAction(5, nupkgs, 0, 200, clientFactory);
        Expectations expectations = new Expectations();
        addExpectation(expectations, client, 5, 0, createPackageFeed("feed-1", createPackageEntry("package-1", "1.2.3"), createPackageEntry("package-2", "1.2.3")));
        addExpectation(expectations, client, 2, 2, createPackageFeed("feed-2", createPackageEntry("package-3", "1.2.3"), createPackageEntry("package-4", "1.2.3")));
        addExpectation(expectations, client, 2, 4, createPackageFeed("feed-3"));
        expectations.oneOf(client).close();
        expectations.atLeast(0).of(clientFactory).createClient();
        expectations.will(returnValue(client));
        context.checking(expectations);
        //WHEN
        action.loadPackages();
View Full Code Here

        expectations.will(returnValue("NUnit.2.5.9.10348.nupkg"));
        expectations.atLeast(0).of(nupkg).getStream();
        expectations.will(returnValue(this.getClass().getResourceAsStream("/NUnit.2.5.9.10348.nupkg")));
        //Триггер
        final BeforeTrigger trigger = context.mock(BeforeTrigger.class);
        expectations.oneOf(trigger).doAction(nupkg, classicPackageSource);
        expectations.will(new CallBackAction(pushedPackages));

        context.checking(expectations);
        simplePushStrategy.getBeforePushTriggers().add(trigger);
View Full Code Here

        //GIVEN
        final String filter = "tolower(id) eq 'package.name'";
        @SuppressWarnings("unchecked")
        final PackageSource<Nupkg> source = context.mock(PackageSource.class);
        Expectations expectations = new Expectations();
        expectations.oneOf(source).getPackages("package.name");
        context.checking(expectations);
        QueryExecutor executor = new QueryExecutor();
        //WHEN
        executor.execQuery(source, filter);
        //THEN
View Full Code Here

        Nupkg eighthPackage = createPackageStub("eighth.package", "1");
        //Хранилище
        @SuppressWarnings("unchecked")
        final PackageSource<Nupkg> source = context.mock(PackageSource.class);
        Expectations expectations = new Expectations();
        expectations.oneOf(source).getPackages("first.package");
        expectations.will(returnValue(Arrays.asList(firstPackage)));
        expectations.oneOf(source).getPackages("second.package");
        expectations.will(returnValue(Arrays.asList(secondPackage)));
        expectations.oneOf(source).getPackages("thrid.package");
        expectations.will(returnValue(Arrays.asList(thridPackage)));
View Full Code Here

        @SuppressWarnings("unchecked")
        final PackageSource<Nupkg> source = context.mock(PackageSource.class);
        Expectations expectations = new Expectations();
        expectations.oneOf(source).getPackages("first.package");
        expectations.will(returnValue(Arrays.asList(firstPackage)));
        expectations.oneOf(source).getPackages("second.package");
        expectations.will(returnValue(Arrays.asList(secondPackage)));
        expectations.oneOf(source).getPackages("thrid.package");
        expectations.will(returnValue(Arrays.asList(thridPackage)));
        expectations.oneOf(source).getPackages("fourth.package");
        expectations.will(returnValue(Arrays.asList(fourthPackage)));
View Full Code Here

        Expectations expectations = new Expectations();
        expectations.oneOf(source).getPackages("first.package");
        expectations.will(returnValue(Arrays.asList(firstPackage)));
        expectations.oneOf(source).getPackages("second.package");
        expectations.will(returnValue(Arrays.asList(secondPackage)));
        expectations.oneOf(source).getPackages("thrid.package");
        expectations.will(returnValue(Arrays.asList(thridPackage)));
        expectations.oneOf(source).getPackages("fourth.package");
        expectations.will(returnValue(Arrays.asList(fourthPackage)));
        expectations.oneOf(source).getPackages("fifth.package");
        expectations.will(returnValue(Arrays.asList(fifthPackage)));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.